-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdit_test.go
More file actions
181 lines (153 loc) · 4.18 KB
/
dit_test.go
File metadata and controls
181 lines (153 loc) · 4.18 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
package dit
import (
"bytes"
"encoding/json"
"os"
"os/exec"
"path/filepath"
"strings"
"testing"
)
const loginFormHTML = `<html><body>
<form method="POST" action="/login">
<label for="user">Username</label>
<input type="text" name="username" id="user"/>
<label for="pass">Password</label>
<input type="password" name="password" id="pass"/>
<input type="submit" value="Log In"/>
</form>
</body></html>`
func buildBinary(t *testing.T) string {
t.Helper()
tmpDir := t.TempDir()
binary := filepath.Join(tmpDir, "dit")
cmd := exec.Command("go", "build", "-o", binary, "./cmd/dit")
if output, err := cmd.CombinedOutput(); err != nil {
t.Fatalf("Failed to build binary: %v\n%s", err, output)
}
return binary
}
func TestFunctional_RunStdin(t *testing.T) {
binary := buildBinary(t)
cmd := exec.Command(binary, "run", "-s")
cmd.Stdin = strings.NewReader(loginFormHTML)
var stdout, stderr bytes.Buffer
cmd.Stdout = &stdout
cmd.Stderr = &stderr
if err := cmd.Run(); err != nil {
t.Fatalf("Functional test failed: %v\nStderr: %s", err, stderr.String())
}
// Output can be either page+forms object or just forms array
var pageResult struct {
Type string `json:"type"`
Forms []struct {
Type string `json:"type"`
Fields map[string]string `json:"fields"`
} `json:"forms"`
}
if err := json.Unmarshal(stdout.Bytes(), &pageResult); err != nil {
t.Fatalf("Output is not valid JSON: %v\nOutput: %s", err, stdout.String())
}
if len(pageResult.Forms) == 0 {
t.Fatal("No forms found in output")
}
}
func TestFunctional_RunStdinURL(t *testing.T) {
binary := buildBinary(t)
// Simulating: echo "https://github.com/login" | dit run
cmd := exec.Command(binary, "run", "-s")
cmd.Stdin = strings.NewReader("https://github.com/login")
var stdout, stderr bytes.Buffer
cmd.Stdout = &stdout
cmd.Stderr = &stderr
if err := cmd.Run(); err != nil {
t.Fatalf("Functional URL test failed: %v\nStderr: %s", err, stderr.String())
}
// Output can be either page+forms object or just forms array
var pageResult struct {
Type string `json:"type"`
Forms []struct {
Type string `json:"type"`
Fields map[string]string `json:"fields"`
} `json:"forms"`
}
if err := json.Unmarshal(stdout.Bytes(), &pageResult); err != nil {
t.Fatalf("Output is not valid JSON: %v\nOutput: %s", err, stdout.String())
}
if len(pageResult.Forms) == 0 {
t.Fatal("No forms found in output from URL pipe")
}
}
func TestExtractForms(t *testing.T) {
modelPath := "model.json"
if _, err := os.Stat(modelPath); os.IsNotExist(err) {
t.Skip("model.json not found, skipping")
}
c, err := Load(modelPath)
if err != nil {
t.Fatal(err)
}
results, err := c.ExtractForms(loginFormHTML)
if err != nil {
t.Fatal(err)
}
if len(results) != 1 {
t.Fatalf("expected 1 form, got %d", len(results))
}
if results[0].Type == "" {
t.Error("expected non-empty form type")
}
if results[0].Fields == nil {
t.Error("expected non-nil fields")
}
}
func TestExtractFormsProba(t *testing.T) {
modelPath := "model.json"
if _, err := os.Stat(modelPath); os.IsNotExist(err) {
t.Skip("model.json not found, skipping")
}
c, err := Load(modelPath)
if err != nil {
t.Fatal(err)
}
results, err := c.ExtractFormsProba(loginFormHTML, 0.05)
if err != nil {
t.Fatal(err)
}
if len(results) != 1 {
t.Fatalf("expected 1 form, got %d", len(results))
}
if len(results[0].Type) == 0 {
t.Error("expected non-empty type probabilities")
}
}
func TestExtractFormsNoForms(t *testing.T) {
modelPath := "model.json"
if _, err := os.Stat(modelPath); os.IsNotExist(err) {
t.Skip("model.json not found, skipping")
}
c, err := Load(modelPath)
if err != nil {
t.Fatal(err)
}
results, err := c.ExtractForms("<html><body>No forms here</body></html>")
if err != nil {
t.Fatal(err)
}
if len(results) != 0 {
t.Errorf("expected 0 results, got %d", len(results))
}
}
func TestLoadNonExistent(t *testing.T) {
_, err := Load("nonexistent.json")
if err == nil {
t.Error("expected error for nonexistent model")
}
}
func TestClassifierNotInitialized(t *testing.T) {
c := &Classifier{}
_, err := c.ExtractForms(loginFormHTML)
if err == nil {
t.Error("expected error for uninitialized classifier")
}
}