-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscraper_test.go
137 lines (108 loc) · 3.53 KB
/
scraper_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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package newsletter
import (
"context"
"crypto/md5"
"net/http"
"net/http/httptest"
"os"
"testing"
"time"
"github.com/perebaj/newsletter/mongodb"
)
type StorageMockImpl struct{}
const FakeURL = "http://fakeurl.test"
func NewStorageMock() StorageMockImpl { return StorageMockImpl{} }
func (s StorageMockImpl) SavePage(_ context.Context, _ []mongodb.Page) error { return nil }
func (s StorageMockImpl) DistinctEngineerURLs(_ context.Context) ([]interface{}, error) {
return []interface{}{FakeURL}, nil
}
func (s StorageMockImpl) Page(_ context.Context, _ string) ([]mongodb.Page, error) {
return []mongodb.Page{}, nil
}
func (s StorageMockImpl) Newsletter() ([]mongodb.Newsletter, error) {
return []mongodb.Newsletter{{URLs: []string{FakeURL}}}, nil
}
func (s StorageMockImpl) PageIn(_ context.Context, _ []string) ([]mongodb.Page, error) {
return []mongodb.Page{
{IsMostRecent: true, URL: FakeURL, Content: "Hello, World!", HashMD5: md5.Sum([]byte("Hello, World!"))},
{IsMostRecent: true, URL: FakeURL, Content: "Hello, World! 2", HashMD5: md5.Sum([]byte("Hello, World! 2"))},
}, nil
}
func TestPageComparation(t *testing.T) {
recentScrapedPage := Page{
Content: "Hello, World!",
URL: FakeURL,
ScrapeDateTime: time.Now().UTC(),
}
lastScrapedPage := []mongodb.Page{
{
Content: "Hello, World!",
URL: FakeURL,
ScrapeDatetime: time.Now().UTC().Add(-time.Duration(1) * time.Hour),
HashMD5: md5.Sum([]byte("Hello, World!")),
},
}
newPage := pageComparation(lastScrapedPage, recentScrapedPage)
if newPage[0].IsMostRecent {
t.Errorf("expected false, got %v", newPage[0].IsMostRecent)
}
lastScrapedPage[0].Content = "Hello, World! 2"
lastScrapedPage[0].HashMD5 = md5.Sum([]byte("Hello, World! 2"))
newPage = pageComparation(lastScrapedPage, recentScrapedPage)
if !newPage[0].IsMostRecent {
t.Errorf("expected true, got %v", newPage[0].IsMostRecent)
}
lastScrapedPage = []mongodb.Page{}
newPage = pageComparation(lastScrapedPage, recentScrapedPage)
if !newPage[0].IsMostRecent {
t.Errorf("expected true, got %v", newPage[0].IsMostRecent)
}
}
// Even not verifying the result, this test is useful to check if the crawler is running properly, since it is
// using Mocks for the Storage and the Fetch function.
func TestCrawlerRun(t *testing.T) {
timeoutCh := time.After(time.Duration(150) * time.Millisecond)
ctx := context.Background()
s := NewStorageMock()
f := func(string) (string, error) {
return "Hello, World!", nil
}
signalCh := make(chan os.Signal, 1)
c := NewCrawler(1, time.Duration(1000)*time.Millisecond, signalCh)
go func() {
c.Run(ctx, s, f)
}()
select {
case <-signalCh:
t.Error("unexpected signal error")
case <-timeoutCh:
}
}
func TestFetch(t *testing.T) {
wantBody := "Hello, World!"
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
_, _ = w.Write([]byte(wantBody))
}))
defer server.Close()
got, err := Fetch(server.URL)
if err != nil {
t.Errorf("error getting reference: %v", err)
}
if got != wantBody {
t.Errorf("expected %s, got %s", wantBody, got)
}
}
func TestFetch_Status500(t *testing.T) {
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusInternalServerError)
}))
defer server.Close()
got, err := Fetch(server.URL)
if err != nil {
t.Errorf("error getting reference: %v", err)
}
if got != "" {
t.Errorf("expected empty body, got %s", got)
}
}