-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaccount_test.go
113 lines (99 loc) · 2.87 KB
/
account_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
113
package account
import (
random "github.com/Pallinder/go-randomdata"
"os"
"testing"
)
type user struct {
username string
password string
question1 string
question2 string
question3 string
answer1 string
answer2 string
answer3 string
}
var singleUser user
var device []byte
func TestMain(m *testing.M) {
singleUser = *new(user)
singleUser.username = random.Email()
singleUser.password = random.Adjective() + random.Noun()
singleUser.question1 = random.Adjective()
singleUser.answer1 = random.Noun()
singleUser.question2 = random.Adjective()
singleUser.answer2 = random.Noun()
singleUser.question3 = random.Adjective()
singleUser.answer3 = random.Noun()
InitLocalStorage()
os.Exit(m.Run())
}
func TestRegistration(t *testing.T) {
var err error
device, err = Register(singleUser.username, singleUser.password, singleUser.question1,
singleUser.question2, singleUser.question3, singleUser.answer1,
singleUser.answer2, singleUser.answer3)
if err != nil {
t.Errorf("Registration Failed: %s\n", err)
}
if len(device) == 0 {
t.Errorf("Device File Creation Failed: %s\n", err)
}
t.Logf("Device File: %s\n", device)
}
func TestLogon(t *testing.T) {
account, err := LogOn(singleUser.username, singleUser.password)
if err != nil {
t.Errorf("Logon Failed: %s\n", err)
}
t.Logf("Logged into Account: %s\n", account)
}
func TestDeviceLogon(t *testing.T) {
account, err := DeviceLogOn(device)
if err != nil {
t.Errorf("Device Logon Failed: %s\n", err)
}
t.Logf("Logged into Account: %s\n", account)
}
func TestChangePassword(t *testing.T) {
var err error
newPassword := random.Adjective() + random.Noun()
device, err = ChangePassword(singleUser.username, singleUser.password, newPassword)
singleUser.password = newPassword
if err != nil {
t.Errorf("Password Change Failed: %s\n", err)
}
if len(device) == 0 {
t.Errorf("Device File Creation Failed: %s\n", err)
}
t.Logf("Device File: %s\n", device)
}
func TestChangeQuestions(t *testing.T) {
singleUser.question1 = random.Adjective()
singleUser.answer1 = random.Noun()
singleUser.question2 = random.Adjective()
singleUser.answer2 = random.Noun()
singleUser.question3 = random.Adjective()
singleUser.answer3 = random.Noun()
err := ChangeQuestions(singleUser.username, singleUser.password, singleUser.question1,
singleUser.question2, singleUser.question3, singleUser.answer1,
singleUser.answer2, singleUser.answer3)
if err != nil {
t.Errorf("Question Change Failed: %s\n", err)
}
}
func TestRecover(t *testing.T) {
var err error
newPassword := random.Adjective() + random.Noun()
device, err = Recover(singleUser.username, newPassword, singleUser.answer1,
singleUser.answer2, singleUser.answer3)
if err != nil {
t.Errorf("Recovery Failed: %s\n", err)
}
if len(device) == 0 {
t.Errorf("Device File Creation Failed: %s\n", err)
}
t.Logf("Device File: %s\n", device)
singleUser.password = newPassword
}