-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrulegen_test.go
60 lines (42 loc) · 861 Bytes
/
rulegen_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
package main
import (
"github.com/coolbry95/edit/spell"
"testing"
)
// test in order that function is called
//func (h hashcatRulePrint) String() string {
//}
var model *spell.Model
var testWords = []string{
"password",
"test",
"tesing",
}
func init() {
model = spell.NewModel()
for _, word := range testWords {
model.CreateEntry(word)
}
}
func TestprintRules(t *Testing.t) {
}
func TestanalyzePassword(t *Testing.t) {
}
func TestgenerateHashcatRules(t *Testing.t) {
}
func TestgenerateWords(t *Testing.t) []Word {
}
func TestgenerateSimpleWords(t *Testing.t) {
}
func TestgenerateAdvancedWords(t *Testing.t) {
}
func TestRuleWorks(t *Testing.t) {
}
func TestSimpleHashcatRules(t *Testing.t) {
}
func TestAdvancedHashcatRules(t *Testing.t) {
}
func TestcheckReversiblePassword(t *Testing.t) {
}
func TestprintRules(t *Testing.t) {
}