forked from sqlancer/sqlancer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestPostgres.java
More file actions
35 lines (27 loc) · 1.35 KB
/
TestPostgres.java
File metadata and controls
35 lines (27 loc) · 1.35 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
package sqlancer.dbms;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assumptions.assumeTrue;
import org.junit.jupiter.api.Test;
import sqlancer.Main;
public class TestPostgres {
String postgresAvailable = System.getenv("POSTGRES_AVAILABLE");
boolean postgresIsAvailable = postgresAvailable != null && postgresAvailable.equalsIgnoreCase("true");
@Test
public void testPostgres() {
assumeTrue(postgresIsAvailable);
assertEquals(0,
Main.executeMain(new String[] { "--random-seed", "0", "--timeout-seconds", TestConfig.SECONDS,
"--num-threads", "4", "--num-queries", TestConfig.NUM_QUERIES, "postgres", "--test-collations",
"false" }));
}
@Test
public void testPQS() {
assumeTrue(postgresIsAvailable);
assertEquals(0,
Main.executeMain(new String[] { "--random-seed", "0", "--timeout-seconds", TestConfig.SECONDS,
"--num-threads", "4", "--num-queries", TestConfig.NUM_QUERIES, "--random-string-generation",
"ALPHANUMERIC_SPECIALCHAR", "--database-prefix",
"pqsdb" /* Workaround for connections not being closed */, "postgres", "--test-collations",
"false", "--oracle", "pqs" }));
}
}