Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
caddy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Łukasz Nowak
caddy
Commits
d7641118
Commit
d7641118
authored
Oct 18, 2015
by
Matthew Holt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
letsencrypt: Storage tests
parent
8cd6b8aa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
68 additions
and
0 deletions
+68
-0
config/letsencrypt/storage.go
config/letsencrypt/storage.go
+2
-0
config/letsencrypt/storage_test.go
config/letsencrypt/storage_test.go
+66
-0
No files found.
config/letsencrypt/storage.go
View file @
d7641118
...
...
@@ -79,6 +79,8 @@ func emailUsername(email string) string {
at
:=
strings
.
Index
(
email
,
"@"
)
if
at
==
-
1
{
return
email
}
else
if
at
==
0
{
return
email
[
1
:
]
}
return
email
[
:
at
]
}
config/letsencrypt/storage_test.go
0 → 100644
View file @
d7641118
package
letsencrypt
import
"testing"
func
TestStorage
(
t
*
testing
.
T
)
{
storage
=
Storage
(
"./letsencrypt"
)
if
expected
,
actual
:=
"letsencrypt/sites"
,
storage
.
Sites
();
actual
!=
expected
{
t
.
Errorf
(
"Expected Sites() to return '%s' but got '%s'"
,
expected
,
actual
)
}
if
expected
,
actual
:=
"letsencrypt/sites/test.com"
,
storage
.
Site
(
"test.com"
);
actual
!=
expected
{
t
.
Errorf
(
"Expected Site() to return '%s' but got '%s'"
,
expected
,
actual
)
}
if
expected
,
actual
:=
"letsencrypt/sites/test.com/test.com.crt"
,
storage
.
SiteCertFile
(
"test.com"
);
actual
!=
expected
{
t
.
Errorf
(
"Expected SiteCertFile() to return '%s' but got '%s'"
,
expected
,
actual
)
}
if
expected
,
actual
:=
"letsencrypt/sites/test.com/test.com.key"
,
storage
.
SiteKeyFile
(
"test.com"
);
actual
!=
expected
{
t
.
Errorf
(
"Expected SiteKeyFile() to return '%s' but got '%s'"
,
expected
,
actual
)
}
if
expected
,
actual
:=
"letsencrypt/sites/test.com/test.com.json"
,
storage
.
SiteMetaFile
(
"test.com"
);
actual
!=
expected
{
t
.
Errorf
(
"Expected SiteMetaFile() to return '%s' but got '%s'"
,
expected
,
actual
)
}
if
expected
,
actual
:=
"letsencrypt/users"
,
storage
.
Users
();
actual
!=
expected
{
t
.
Errorf
(
"Expected Users() to return '%s' but got '%s'"
,
expected
,
actual
)
}
if
expected
,
actual
:=
"letsencrypt/users/me@example.com"
,
storage
.
User
(
"me@example.com"
);
actual
!=
expected
{
t
.
Errorf
(
"Expected User() to return '%s' but got '%s'"
,
expected
,
actual
)
}
if
expected
,
actual
:=
"letsencrypt/users/me@example.com/me.json"
,
storage
.
UserRegFile
(
"me@example.com"
);
actual
!=
expected
{
t
.
Errorf
(
"Expected UserRegFile() to return '%s' but got '%s'"
,
expected
,
actual
)
}
if
expected
,
actual
:=
"letsencrypt/users/me@example.com/me.key"
,
storage
.
UserKeyFile
(
"me@example.com"
);
actual
!=
expected
{
t
.
Errorf
(
"Expected UserKeyFile() to return '%s' but got '%s'"
,
expected
,
actual
)
}
}
func
TestEmailUsername
(
t
*
testing
.
T
)
{
for
i
,
test
:=
range
[]
struct
{
input
,
expect
string
}{
{
input
:
"username@example.com"
,
expect
:
"username"
,
},
{
input
:
"plus+addressing@example.com"
,
expect
:
"plus+addressing"
,
},
{
input
:
"me+plus-addressing@example.com"
,
expect
:
"me+plus-addressing"
,
},
{
input
:
"not-an-email"
,
expect
:
"not-an-email"
,
},
{
input
:
"@foobar.com"
,
expect
:
"foobar.com"
,
},
}
{
if
actual
:=
emailUsername
(
test
.
input
);
actual
!=
test
.
expect
{
t
.
Errorf
(
"Test %d: Expected username to be '%s' but was '%s'"
,
i
,
test
.
expect
,
actual
)
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment