-
Notifications
You must be signed in to change notification settings - Fork 178
/
Copy pathCachingParserTest.java
97 lines (81 loc) · 2.15 KB
/
CachingParserTest.java
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
package ua_parser;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
import org.junit.Before;
import org.junit.Test;
/**
* These tests really only redo the same tests as in ParserTest but with a
* different Parser subclass Also the same tests will be run several times on
* the same user agents to validate the caching works correctly.
*
* @author niels
*
*/
public class CachingParserTest extends ParserTest {
@Before
public void initParser() {
parser = new CachingParser();
}
@Override
Parser parserFromStringConfig(String configYamlAsString) throws Exception {
InputStream yamlInput = new ByteArrayInputStream(
configYamlAsString.getBytes("UTF8"));
return new CachingParser(yamlInput);
}
@Test
public void testCachingParserCorrectSizeInit() throws Exception {
parser = new CachingParser(10);
}
@Test (expected = java.lang.AssertionError.class)
public void testCachingParserIncorrectSizeInit() throws Exception{
parser = new CachingParser(0);
}
@Test
public void testCachedParseUserAgent() {
super.testParseUserAgent();
super.testParseUserAgent();
super.testParseUserAgent();
}
@Test
public void testCachedParseOS() {
super.testParseOS();
super.testParseOS();
super.testParseOS();
}
@Test
public void testCachedParseAdditionalOS() {
super.testParseAdditionalOS();
super.testParseAdditionalOS();
super.testParseAdditionalOS();
}
@Test
public void testCachedParseDevice() {
super.testParseDevice();
super.testParseDevice();
super.testParseDevice();
}
@Test
public void testCachedParseFirefox() {
super.testParseFirefox();
super.testParseFirefox();
super.testParseFirefox();
}
@Test
public void testCachedParsePGTS() {
super.testParsePGTS();
super.testParsePGTS();
super.testParsePGTS();
}
@Test
public void testCachedParseAll() {
super.testParseAll();
super.testParseAll();
super.testParseAll();
}
@Test
public void testCachedReplacementQuoting() throws Exception {
super.testReplacementQuoting();
super.testReplacementQuoting();
super.testReplacementQuoting();
}
}