Add letsencrypt user test
This commit is contained in:
parent
0168ba5490
commit
0c5b4bb04e
|
@ -0,0 +1,45 @@
|
||||||
|
package letsencrypt
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io/ioutil"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/stretchr/testify/assert"
|
||||||
|
"github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/xenolf/lego/acme"
|
||||||
|
)
|
||||||
|
|
||||||
|
func tempdir() string {
|
||||||
|
f, _ := ioutil.TempDir("", "")
|
||||||
|
return f
|
||||||
|
}
|
||||||
|
|
||||||
|
func testUser(t *testing.T, email string) {
|
||||||
|
reg := &acme.RegistrationResource{
|
||||||
|
URI: "test.com",
|
||||||
|
Body: acme.Registration{
|
||||||
|
Agreement: "agree?",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
user, err := newUser(email)
|
||||||
|
assert.Nil(t, err)
|
||||||
|
key := user.GetPrivateKey()
|
||||||
|
assert.NotNil(t, key)
|
||||||
|
user.Registration = reg
|
||||||
|
|
||||||
|
err = saveUser(user)
|
||||||
|
assert.Nil(t, err)
|
||||||
|
|
||||||
|
user, err = getUser(email)
|
||||||
|
assert.Nil(t, err)
|
||||||
|
assert.Equal(t, email, user.GetEmail())
|
||||||
|
assert.Equal(t, key, user.GetPrivateKey())
|
||||||
|
assert.Equal(t, reg, user.GetRegistration())
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestUser(t *testing.T) {
|
||||||
|
directory = Directory(tempdir())
|
||||||
|
|
||||||
|
testUser(t, "test@test.com")
|
||||||
|
testUser(t, "")
|
||||||
|
}
|
Loading…
Reference in New Issue