Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
crawl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ale
crawl
Commits
23a80bd6
Commit
23a80bd6
authored
6 years ago
by
ale
Browse files
Options
Downloads
Patches
Plain Diff
Add a simple test for the full WARC crawler
parent
98253349
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
cmd/crawl/crawl.go
+3
-0
3 additions, 0 deletions
cmd/crawl/crawl.go
cmd/crawl/crawl_test.go
+77
-0
77 additions, 0 deletions
cmd/crawl/crawl_test.go
crawler_test.go
+1
-1
1 addition, 1 deletion
crawler_test.go
with
81 additions
and
1 deletion
cmd/crawl/crawl.go
+
3
−
0
View file @
23a80bd6
...
...
@@ -62,6 +62,7 @@ func hdr2str(h http.Header) []byte {
type
warcSaveHandler
struct
{
warc
*
warc
.
Writer
warcInfoID
string
numWritten
int
}
func
(
h
*
warcSaveHandler
)
writeWARCRecord
(
typ
,
uri
string
,
data
[]
byte
)
error
{
...
...
@@ -109,6 +110,8 @@ func (h *warcSaveHandler) Handle(c *crawl.Crawler, u string, depth int, resp *ht
return
werr
}
h
.
numWritten
++
return
extractLinks
(
c
,
u
,
depth
,
resp
,
nil
)
}
...
...
This diff is collapsed.
Click to expand it.
cmd/crawl/crawl_test.go
0 → 100644
+
77
−
0
View file @
23a80bd6
package
main
import
(
"fmt"
"io/ioutil"
"net/http"
"net/http/httptest"
"os"
"path/filepath"
"testing"
"git.autistici.org/ale/crawl"
"git.autistici.org/ale/crawl/warc"
)
func
linkTo
(
w
http
.
ResponseWriter
,
uri
string
)
{
w
.
Header
()
.
Set
(
"Content-Type"
,
"text/html"
)
fmt
.
Fprintf
(
w
,
"<html><body><a href=
\"
%s
\"
>link!</a></body></html>"
,
uri
)
}
func
TestCrawl
(
t
*
testing
.
T
)
{
tmpdir
,
err
:=
ioutil
.
TempDir
(
""
,
""
)
if
err
!=
nil
{
t
.
Fatal
(
err
)
}
defer
os
.
RemoveAll
(
tmpdir
)
srv
:=
httptest
.
NewServer
(
http
.
HandlerFunc
(
func
(
w
http
.
ResponseWriter
,
r
*
http
.
Request
)
{
switch
r
.
URL
.
Path
{
case
"/"
:
linkTo
(
w
,
"/redir"
)
case
"/b"
:
linkTo
(
w
,
"/"
)
case
"/redir"
:
http
.
Redirect
(
w
,
r
,
"/b"
,
http
.
StatusFound
)
default
:
http
.
NotFound
(
w
,
r
)
}
}))
defer
srv
.
Close
()
seeds
:=
crawl
.
MustParseURLs
([]
string
{
srv
.
URL
+
"/"
})
scope
:=
crawl
.
AND
(
crawl
.
NewSchemeScope
([]
string
{
"http"
}),
crawl
.
NewDepthScope
(
10
),
crawl
.
NewSeedScope
(
seeds
),
)
outf
,
err
:=
os
.
Create
(
filepath
.
Join
(
tmpdir
,
"warc.gz"
))
if
err
!=
nil
{
t
.
Fatal
(
err
)
}
w
:=
warc
.
NewWriter
(
outf
)
defer
w
.
Close
()
saver
,
err
:=
newWarcSaveHandler
(
w
)
if
err
!=
nil
{
t
.
Fatal
(
err
)
}
crawler
,
err
:=
crawl
.
NewCrawler
(
filepath
.
Join
(
tmpdir
,
"db"
),
seeds
,
scope
,
crawl
.
FetcherFunc
(
fetch
),
crawl
.
HandleRetries
(
crawl
.
FollowRedirects
(
crawl
.
FilterErrors
(
saver
))),
)
if
err
!=
nil
{
t
.
Fatal
(
err
)
}
crawler
.
Run
(
1
)
crawler
.
Close
()
if
n
:=
saver
.
(
*
warcSaveHandler
)
.
numWritten
;
n
!=
3
{
t
.
Fatalf
(
"warc handler wrote %d records, expected 3"
,
n
)
}
}
This diff is collapsed.
Click to expand it.
crawler_test.go
+
1
−
1
View file @
23a80bd6
...
...
@@ -44,7 +44,7 @@ func TestCrawler(t *testing.T) {
return
nil
})
crawler
,
err
:=
NewCrawler
(
dir
+
"/crawl.db"
,
seeds
,
scope
,
FetcherFunc
(
http
.
Get
),
FollowRedirects
(
h
))
crawler
,
err
:=
NewCrawler
(
dir
+
"/crawl.db"
,
seeds
,
scope
,
FetcherFunc
(
http
.
Get
),
HandleRetries
(
FilterErrors
(
FollowRedirects
(
h
))
))
if
err
!=
nil
{
t
.
Fatal
(
"NewCrawler"
,
err
)
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment