-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathparser_pl_test.go
More file actions
89 lines (70 loc) · 2.62 KB
/
parser_pl_test.go
File metadata and controls
89 lines (70 loc) · 2.62 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
package whoisparser
import (
"github.com/stretchr/testify/assert"
"io/ioutil"
"testing"
)
func TestParserPl(t *testing.T) {
assertParamsMap := AssertParamsMap{
"Registrar": {
{TargetField: "DomainName", ExpectedResult: "top.pl", AssertType: AssertTypeEqual},
{TargetField: "DomainDNSSEC", ExpectedResult: "Unsigned", AssertType: AssertTypeEqual},
{TargetField: "ExpirationDate", ExpectedResult: "2019.12.20 09:08:33", AssertType: AssertTypeEqual},
{TargetField: "UpdatedDate", ExpectedResult: "2018.11.20 16:09:18", AssertType: AssertTypeEqual},
{TargetField: "CreatedDate", ExpectedResult: "1997.04.14 13:00:00", AssertType: AssertTypeEqual},
},
}
testDataFilepath := "test_data/whois_pl/top.pl.txt"
parserName := ".pl parser"
runParserAssertions(t, plParser, parserName, testDataFilepath, assertParamsMap)
}
func TestParserPlNoSuchDomainErr(t *testing.T) {
var fileBytes []byte
var err error
var text string
var whoisRecord *Record
fileBytes, err = ioutil.ReadFile("test_data/whois_pl/no_such_domain.txt")
assert.NoError(t, err, "failed to open file with test data")
text = string(fileBytes)
whoisRecord = plParser.Parse(text)
assert.True(t, whoisRecord.ErrCode == ErrCodeNoSuchDomain)
assert.Nil(t, whoisRecord.Registrar)
assert.Nil(t, whoisRecord.Registrant)
assert.Nil(t, whoisRecord.Bill)
assert.Nil(t, whoisRecord.Admin)
assert.Nil(t, whoisRecord.Tech)
}
func TestParserPlMalformedRequest(t *testing.T) {
var fileBytes []byte
var err error
var text string
var whoisRecord *Record
fileBytes, err = ioutil.ReadFile("test_data/whois_pl/malformed_request.txt")
assert.NoError(t, err, "failed to open file with test data")
text = string(fileBytes)
whoisRecord = plParser.Parse(text)
assert.NoError(t, err, "failed to open file with test data")
assert.True(t, whoisRecord.ErrCode == ErrCodeMalformedRequest)
assert.Nil(t, whoisRecord.Registrar)
assert.Nil(t, whoisRecord.Registrant)
assert.Nil(t, whoisRecord.Bill)
assert.Nil(t, whoisRecord.Admin)
assert.Nil(t, whoisRecord.Tech)
}
func TestParserPlRateLimit(t *testing.T) {
var fileBytes []byte
var err error
var text string
var whoisRecord *Record
fileBytes, err = ioutil.ReadFile("test_data/whois_pl/rate_limit.txt")
assert.NoError(t, err, "failed to open file with test data")
text = string(fileBytes)
whoisRecord = plParser.Parse(text)
assert.NoError(t, err, "failed to open file with test data")
assert.True(t, whoisRecord.ErrCode == ErrCodeRequestRateLimit)
assert.Nil(t, whoisRecord.Registrar)
assert.Nil(t, whoisRecord.Registrant)
assert.Nil(t, whoisRecord.Bill)
assert.Nil(t, whoisRecord.Admin)
assert.Nil(t, whoisRecord.Tech)
}