-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-config-web-crawler.yaml
109 lines (109 loc) · 5.76 KB
/
test-config-web-crawler.yaml
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
test_root:
max_points: 10.0
test_suites:
- test_suite:
name: "Testování Web crawleru pro hloubku 0"
delay: 500
initial_steps: []
test_cases:
- test_case:
name: "Test utb.cz s hloubkou 0"
description: "Testuje funkcionalitu web crawleru na webové stránce https://www.utb.cz/en/ s hloubkou prohledávání 0."
steps:
# spusti testovanou aplikaci
- run_app_later:
command: "java -jar app/build/libs/app-all.jar https://www.utb.cz/en/ 0 0"
delay: 1400
- wait_until:
module_name: "default"
time_out: 13000
# spusti interni modul web crawleru
- create_web_crawler:
name: "module-1"
start_url: "https://www.utb.cz/en/"
max_depth: 0
analyzer: "word-freq:20"
# overeni shody vystupu pro 20 slov. porovnavaci pravidlo: ";|#;3" => separator=; (shodny podretezec);(tolerance 3%)
- assert_range:
module1_name: "default"
module2_name: "module-1"
start: 0
count: 20
rule: ";|#;3"
- test_case:
name: "Test jlcpcb.com s hloubkou 0"
description: "Testuje funkcionalitu web crawleru na webové stránce https://jlcpcb.com/ s hloubkou prohledávání 0."
steps:
# spusti testovanou aplikaci
- run_app_later:
command: "java -jar app/build/libs/app-all.jar https://jlcpcb.com/ 0 0"
delay: 1400
- wait_until:
module_name: "default"
time_out: 13000
# spusti interni modul web crawleru
- create_web_crawler:
name: "module-1"
start_url: "https://jlcpcb.com/"
max_depth: 0
analyzer: "word-freq:20"
# overeni shody vystupu pro 20 slov. porovnavaci pravidlo: ";|#;3" => separator=; (shodny podretezec);(tolerance 3%)
- assert_range:
module1_name: "default"
module2_name: "module-1"
start: 0
count: 20
rule: ";|#;3"
- test_suite:
name: "Testování Web crawleru pro hloubku 1"
delay: 500
initial_steps: []
test_cases:
- test_case:
name: "Test wokwi.com s hloubkou 1"
description: "Testuje funkcionalitu web crawleru na webové stránce https://wokwi.com/ s hloubkou prohledávání 1."
steps:
# spusti testovanou aplikaci
- run_app_later:
command: "java -jar app/build/libs/app-all.jar https://wokwi.com/ 1 0"
delay: 1400
- wait_until:
module_name: "default"
time_out: 70000
# spusti interni modul web crawleru
- create_web_crawler:
name: "module-1"
start_url: "https://wokwi.com/"
max_depth: 1
analyzer: "word-freq:20"
# overeni shody vystupu pro 20 slov. porovnavaci pravidlo: ";|#;3" => separator=; (shodny podretezec);(tolerance 10%)
- assert_range:
module1_name: "default"
module2_name: "module-1"
start: 0
count: 20
rule: ";|#;10"
- test_case:
name: "Test jlcpcb.com s hloubkou 1"
description: "Testuje funkcionalitu web crawleru na webové stránce https://jlcpcb.com/ s hloubkou prohledávání 1."
steps:
# spusti testovanou aplikaci
- run_app_later:
command: "java -jar app/build/libs/app-all.jar https://jlcpcb.com/ 1 0"
delay: 1400
- wait_until:
module_name: "default"
time_out: 70000
# spusti interni modul web crawleru
- create_web_crawler:
name: "module-1"
start_url: "https://jlcpcb.com/"
max_depth: 1
analyzer: "word-freq:20"
# overeni shody vystupu pro 20 slov. porovnavaci pravidlo: ";|#;3" => separator=; (shodny podretezec);(tolerance 10%)
- assert_range:
module1_name: "default"
module2_name: "module-1"
start: 0
count: 20
rule: ";|#;10"