forked from gotsunami/go-cloudinary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
service_test.go
112 lines (101 loc) · 3.07 KB
/
service_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// Copyright 2013 Mathias Monnerville and Anthony Baillard.
// All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package cloudinary
import (
"fmt"
"testing"
)
func TestDial(t *testing.T) {
if _, err := Dial("baduri::"); err == nil {
t.Error("should fail on bad uri")
}
// Not a cloudinary:// URL scheme
if _, err := Dial("http://localhost"); err == nil {
t.Error("should fail if URL scheme different from cloudinary://")
}
// Missing API secret (password)?
if _, err := Dial("cloudinary://login@cloudname"); err == nil {
t.Error("should fail when no API secret is provided")
}
k := &Service{
cloudName: "cloudname",
apiKey: "login",
apiSecret: "secret",
}
s, err := Dial(fmt.Sprintf("cloudinary://%s:%s@%s", k.apiKey, k.apiSecret, k.cloudName))
if err != nil {
t.Error("expect a working service at this stage but got an error.")
}
if s.cloudName != k.cloudName || s.apiKey != k.apiKey || s.apiSecret != k.apiSecret {
t.Errorf("wrong service instance. Expect %v, got %v", k, s)
}
uexp := fmt.Sprintf("%s/%s/image/upload/", baseUploadUrl, s.cloudName)
if s.uploadURI.String() != uexp {
t.Errorf("wrong upload URI. Expect %s, got %s", uexp, s.uploadURI.String())
}
}
func TestVerbose(t *testing.T) {
s := new(Service)
s.Verbose(true)
if !s.verbose {
t.Errorf("wrong verbose attribute. Expect %v, got %v", true, s.verbose)
}
}
func TestSimulate(t *testing.T) {
s := new(Service)
s.Simulate(true)
if !s.simulate {
t.Errorf("wrong simulate attribute. Expect %v, got %v", true, s.simulate)
}
}
func TestKeepFiles(t *testing.T) {
s := new(Service)
if err := s.KeepFiles(""); err != nil {
t.Error("empty pattern should not raise an error")
}
pat := "[[;"
if err := s.KeepFiles(pat); err == nil {
t.Errorf("wrong pattern %s should raise an error", pat)
}
pat = "images/\\.jpg$"
err := s.KeepFiles(pat)
if err != nil {
t.Errorf("valid pattern should return no error", pat)
}
if s.keepFilesPattern == nil {
t.Errorf(".keepFilesPattern attribute is still nil with a valid pattern")
}
}
func TestUseDatabase(t *testing.T) {
s := new(Service)
if err := s.UseDatabase("baduri::"); err == nil {
t.Error("should fail on bad uri")
}
// Bad scheme
if err := s.UseDatabase("http://localhost"); err == nil {
t.Error("should fail if URL scheme different from mongodb://")
}
if err := s.UseDatabase("mongodb://localhost/cloudinary"); err != nil {
t.Error("please ensure you have a running MongoDB server on localhost")
}
if s.dbSession == nil || s.col == nil {
t.Error("service's dbSession and col should not be nil")
}
}
func TestCleanAssetName(t *testing.T) {
assets := [][4]string{
// order: path, basepath, prepend, expected result
{"/tmp/css/default.css", "/tmp/", "new", "new/css/default"},
{"/a/b/c.png", "/a", "", "b/c"},
{"/a/b/c.png", "/a ", " ", "b/c"}, // With spaces
{"/a/b/c.png", "", "/x", "x/a/b/c"},
}
for _, p := range assets {
c := cleanAssetName(p[0], p[1], p[2])
if c != p[3] {
t.Errorf("wrong cleaned name. Expect '%s', got '%s'", p[3], c)
}
}
}