1package org.udger.parser;
3import static org.junit.Assert.assertEquals;
4import static org.junit.Assert.fail;
6import java.io.IOException;
8import java.net.UnknownHostException;
9import java.sql.SQLException;
10import java.util.concurrent.ConcurrentLinkedQueue;
11import java.util.concurrent.CyclicBarrier;
13import org.junit.After;
14import org.junit.Before;
24 public void initialize()
throws SQLException {
25 URL resource = this.getClass().getClassLoader().getResource(
"udgerdb_test_v3.dat");
28 inMemoryParser =
new UdgerParser(parserDbData,
true, 0);
32 public void close()
throws IOException {
37 public void testUaString1()
throws SQLException {
38 String uaQuery =
"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0";
40 assertEquals(qr.getUa(),
"Firefox 40.0");
41 assertEquals(qr.getOs(),
"Windows 10");
42 assertEquals(qr.getUaFamily(),
"Firefox");
46 public void testIp()
throws SQLException, UnknownHostException {
47 String ipQuery =
"108.61.199.93";
49 assertEquals(qr.getIpClassificationCode(),
"crawler");
53 public void testUaStringInMemoryParser()
throws SQLException {
54 String uaQuery =
"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0";
56 assertEquals(qr.getUa(),
"Firefox 40.0");
57 assertEquals(qr.getOs(),
"Windows 10");
58 assertEquals(qr.getUaFamily(),
"Firefox");
62 public void testIpInMemoryParser()
throws SQLException, UnknownHostException {
63 String ipQuery =
"108.61.199.93";
65 assertEquals(qr.getIpClassificationCode(),
"crawler");
69 public void testParserDbDataThreadSafety()
throws Throwable {
70 final int numThreads = 500;
71 final String uaQuery =
"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0";
73 final CyclicBarrier gate =
new CyclicBarrier(numThreads);
74 final ConcurrentLinkedQueue<Throwable> failures =
new ConcurrentLinkedQueue<>();
76 Thread[] threads =
new Thread[numThreads];
77 for (
int i = 0; i < numThreads; i++) {
78 threads[i] =
new Thread(
new Runnable() {
84 for (
int j = 0; j < 100; j++) {
86 assertEquals(qr.getUa(),
"Firefox 40.0");
87 assertEquals(qr.getOs(),
"Windows 10");
88 assertEquals(qr.getUaFamily(),
"Firefox");
90 }
catch (Throwable t) {
98 for (
int i = 0; i < numThreads; i++) {
102 if (!failures.isEmpty()) {
103 for (Throwable throwable : failures) {
104 throwable.printStackTrace();
107 fail(
"Parsing threads failed, see printed exceptions");
UdgerIpResult parseIp(String ipString)
UdgerUaResult parseUa(String uaString)