Michael Hanl | ababa39 | 2013-12-05 21:57:37 +0000 | [diff] [blame] | 1 | import com.fasterxml.jackson.core.JsonGenerationException; |
Michael Hanl | 9ca5edd | 2013-12-06 05:13:24 +0000 | [diff] [blame] | 2 | import com.fasterxml.jackson.core.JsonProcessingException; |
Michael Hanl | ababa39 | 2013-12-05 21:57:37 +0000 | [diff] [blame] | 3 | import com.fasterxml.jackson.databind.JsonMappingException; |
Michael Hanl | 942fa02 | 2014-02-24 19:48:57 +0000 | [diff] [blame] | 4 | import de.ids_mannheim.korap.query.serialize.CollectionQuery; |
Michael Hanl | 4fe41cc | 2013-12-10 17:59:51 +0000 | [diff] [blame] | 5 | import de.ids_mannheim.korap.query.serialize.QuerySerializer; |
Michael Hanl | 8a77698 | 2014-05-04 10:13:47 +0000 | [diff] [blame] | 6 | import de.ids_mannheim.korap.resource.Relation; |
Joachim Bingel | 16da4e1 | 2013-12-17 09:48:12 +0000 | [diff] [blame] | 7 | import de.ids_mannheim.korap.util.QueryException; |
Michael Hanl | b64fdce | 2013-12-08 23:17:19 +0000 | [diff] [blame] | 8 | import org.junit.Assert; |
Michael Hanl | 55191d9 | 2013-12-05 11:53:10 +0000 | [diff] [blame] | 9 | import org.junit.Test; |
| 10 | import org.junit.runner.RunWith; |
| 11 | import org.junit.runners.JUnit4; |
| 12 | |
| 13 | import java.io.IOException; |
Michael Hanl | 55191d9 | 2013-12-05 11:53:10 +0000 | [diff] [blame] | 14 | |
| 15 | /** |
| 16 | * @author hanl |
| 17 | * @date 04/12/2013 |
| 18 | */ |
| 19 | |
| 20 | @RunWith(JUnit4.class) |
| 21 | public class MetaQuerySerializationTest { |
| 22 | |
Michael Hanl | 55191d9 | 2013-12-05 11:53:10 +0000 | [diff] [blame] | 23 | |
| 24 | @Test |
| 25 | public void test() throws IOException { |
Michael Hanl | b64fdce | 2013-12-08 23:17:19 +0000 | [diff] [blame] | 26 | StringBuffer b = new StringBuffer(); |
| 27 | b.append("author:Goethe"); |
| 28 | b.append(" AND "); |
| 29 | b.append("pubPlace:Erfurt"); |
| 30 | b.append(" AND "); |
| 31 | b.append("textClass:wissenschaft"); |
Michael Hanl | 0b70bb3 | 2014-05-06 16:09:41 +0000 | [diff] [blame] | 32 | // CollectionQuery qu = new CollectionQuery().addMetaFilterQuery(b.toString()); |
| 33 | CollectionQuery query = new CollectionQuery().addMetaFilterQuery(b.toString()); |
| 34 | System.out.println(query.buildString()); |
| 35 | System.out.println(query.toCollections()); |
Michael Hanl | b64fdce | 2013-12-08 23:17:19 +0000 | [diff] [blame] | 36 | // System.out.println("value reference " + qu.stringify()); |
| 37 | // System.out.println(); |
Michael Hanl | 55191d9 | 2013-12-05 11:53:10 +0000 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | @Test |
| 41 | public void testSingle() throws IOException { |
Michael Hanl | 942fa02 | 2014-02-24 19:48:57 +0000 | [diff] [blame] | 42 | CollectionQuery query = new CollectionQuery().addMetaFilter("textClass", "wissenschaft"); |
Michael Hanl | b64fdce | 2013-12-08 23:17:19 +0000 | [diff] [blame] | 43 | // System.out.println("------ TEXT SINGLE " + query.stringify()); |
Michael Hanl | 0b70bb3 | 2014-05-06 16:09:41 +0000 | [diff] [blame] | 44 | System.out.println(query.buildString()); |
Michael Hanl | 296a031 | 2013-12-05 17:27:51 +0000 | [diff] [blame] | 45 | } |
Michael Hanl | 55191d9 | 2013-12-05 11:53:10 +0000 | [diff] [blame] | 46 | |
Michael Hanl | 296a031 | 2013-12-05 17:27:51 +0000 | [diff] [blame] | 47 | @Test |
| 48 | public void testDates() throws IOException { |
Michael Hanl | b64fdce | 2013-12-08 23:17:19 +0000 | [diff] [blame] | 49 | StringBuffer b = new StringBuffer(); |
Michael Hanl | 4fe1346 | 2013-12-11 18:03:42 +0000 | [diff] [blame] | 50 | b.append("pubDate:>2013-04-01"); |
Michael Hanl | b64fdce | 2013-12-08 23:17:19 +0000 | [diff] [blame] | 51 | b.append(" AND "); |
Michael Hanl | 4fe1346 | 2013-12-11 18:03:42 +0000 | [diff] [blame] | 52 | b.append("pubDate:<2012-04-01"); |
Michael Hanl | b64fdce | 2013-12-08 23:17:19 +0000 | [diff] [blame] | 53 | b.append(" AND "); |
| 54 | b.append("author:Goethe"); |
Michael Hanl | 0b70bb3 | 2014-05-06 16:09:41 +0000 | [diff] [blame] | 55 | CollectionQuery query = new CollectionQuery().addMetaFilterQuery(b.toString()); |
| 56 | System.out.println("value until/since : " + query.buildString()); |
| 57 | System.out.println("meta value until/since " + query.toCollections()); |
| 58 | Assert.assertEquals("[{\"@type\":\"korap:meta-filter\",\"@value\":{\"@type\":\"korap:group\",\"relation\":\"and\",\"operands\":[{\"@type\":\"korap:term\",\"@field\":\"korap:field#author\",\"@value\":\"Goethe\"},{\"@type\":\"korap:group\",\"@field\":\"korap:field#pubDate\",\"relation\":\"between\",\"operands\":[{\"@type\":\"korap:date\",\"@value\":\"2012-04-01\"},{\"@type\":\"korap:date\",\"@value\":\"2013-04-01\"}]}]}}]", query.buildString()); |
Michael Hanl | b64fdce | 2013-12-08 23:17:19 +0000 | [diff] [blame] | 59 | // System.out.println(); |
Michael Hanl | 55191d9 | 2013-12-05 11:53:10 +0000 | [diff] [blame] | 60 | } |
Michael Hanl | 08b93ed | 2013-12-05 18:04:45 +0000 | [diff] [blame] | 61 | |
| 62 | @Test |
| 63 | public void testUntil() throws IOException { |
Michael Hanl | b64fdce | 2013-12-08 23:17:19 +0000 | [diff] [blame] | 64 | StringBuffer b = new StringBuffer(); |
Michael Hanl | 4fe1346 | 2013-12-11 18:03:42 +0000 | [diff] [blame] | 65 | b.append("pubDate:>2013-12-10"); |
Michael Hanl | b64fdce | 2013-12-08 23:17:19 +0000 | [diff] [blame] | 66 | b.append(" AND "); |
| 67 | b.append("author:Hesse"); |
Michael Hanl | 0b70bb3 | 2014-05-06 16:09:41 +0000 | [diff] [blame] | 68 | CollectionQuery query = new CollectionQuery().addMetaFilterQuery(b.toString()); |
Michael Hanl | b64fdce | 2013-12-08 23:17:19 +0000 | [diff] [blame] | 69 | System.out.println("Running date check (until) with additional attribute author"); |
Michael Hanl | 0b70bb3 | 2014-05-06 16:09:41 +0000 | [diff] [blame] | 70 | Assert.assertEquals("[{\"@type\":\"korap:meta-filter\",\"@value\":{\"@type\":\"korap:group\",\"relation\":\"and\",\"operands\":[{\"@type\":\"korap:term\",\"@field\":\"korap:field#author\",\"@value\":\"Hesse\"},{\"@type\":\"korap:group\",\"@field\":\"korap:field#pubDate\",\"relation\":\"until\",\"operands\":[{\"@type\":\"korap:date\",\"@value\":\"2013-12-10\"}]}]}}]", query.buildString()); |
Michael Hanl | b64fdce | 2013-12-08 23:17:19 +0000 | [diff] [blame] | 71 | // System.out.println("value until : " + query.stringify()); |
| 72 | // System.out.println(); |
Michael Hanl | 08b93ed | 2013-12-05 18:04:45 +0000 | [diff] [blame] | 73 | } |
| 74 | |
| 75 | @Test |
| 76 | public void testSince() throws IOException { |
Michael Hanl | b64fdce | 2013-12-08 23:17:19 +0000 | [diff] [blame] | 77 | StringBuffer b = new StringBuffer(); |
Michael Hanl | 4fe1346 | 2013-12-11 18:03:42 +0000 | [diff] [blame] | 78 | b.append("pubDate:<2013-12-10"); |
Michael Hanl | b64fdce | 2013-12-08 23:17:19 +0000 | [diff] [blame] | 79 | b.append(" AND "); |
| 80 | b.append("author:Kafka"); |
Michael Hanl | 0b70bb3 | 2014-05-06 16:09:41 +0000 | [diff] [blame] | 81 | CollectionQuery query = new CollectionQuery().addMetaFilterQuery(b.toString()); |
| 82 | System.out.println("value since : " + query.buildString()); |
| 83 | System.out.println("meta value since " + query.toCollections()); |
Michael Hanl | b64fdce | 2013-12-08 23:17:19 +0000 | [diff] [blame] | 84 | // System.out.println(); |
| 85 | System.out.println("Running date check (since) with additional attribute author"); |
Michael Hanl | 0b70bb3 | 2014-05-06 16:09:41 +0000 | [diff] [blame] | 86 | Assert.assertEquals("[{\"@type\":\"korap:meta-filter\",\"@value\":{\"@type\":\"korap:group\",\"relation\":\"and\",\"operands\":[{\"@type\":\"korap:term\",\"@field\":\"korap:field#author\",\"@value\":\"Kafka\"},{\"@type\":\"korap:group\",\"@field\":\"korap:field#pubDate\",\"relation\":\"since\",\"operands\":[{\"@type\":\"korap:date\",\"@value\":\"2013-12-10\"}]}]}}]", query.buildString()); |
Michael Hanl | 08b93ed | 2013-12-05 18:04:45 +0000 | [diff] [blame] | 87 | } |
| 88 | |
Michael Hanl | 53b0fd0 | 2013-12-06 21:07:52 +0000 | [diff] [blame] | 89 | @Test |
Joachim Bingel | 16da4e1 | 2013-12-17 09:48:12 +0000 | [diff] [blame] | 90 | public void testGenerator() throws QueryException { |
Michael Hanl | ababa39 | 2013-12-05 21:57:37 +0000 | [diff] [blame] | 91 | /* |
| 92 | * just for testing... |
| 93 | */ |
Michael Hanl | 4fe41cc | 2013-12-10 17:59:51 +0000 | [diff] [blame] | 94 | QuerySerializer jg = new QuerySerializer(); |
Michael Hanl | ababa39 | 2013-12-05 21:57:37 +0000 | [diff] [blame] | 95 | int i = 0; |
| 96 | String[] queries; |
| 97 | queries = new String[]{ |
| 98 | "shrink({[base=foo]})", |
| 99 | "shrink({[base=foo]}[orth=bar])", |
| 100 | "shrink(1:[base=Der]{1:[base=Mann]})", |
| 101 | }; |
| 102 | |
| 103 | for (String q : queries) { |
| 104 | i++; |
| 105 | try { |
| 106 | System.out.println(q); |
| 107 | jg.run(q, "poliqarp", System.getProperty("user.home") + "/bsp" + i + ".json"); |
| 108 | System.out.println(); |
| 109 | } catch (NullPointerException npe) { |
| 110 | npe.printStackTrace(); |
| 111 | System.out.println("null\n"); |
Michael Hanl | 560b4cd | 2013-12-06 14:26:44 +0000 | [diff] [blame] | 112 | System.out.println(); |
Michael Hanl | ababa39 | 2013-12-05 21:57:37 +0000 | [diff] [blame] | 113 | } catch (JsonGenerationException e) { |
| 114 | e.printStackTrace(); |
| 115 | } catch (JsonMappingException e) { |
| 116 | e.printStackTrace(); |
| 117 | } catch (IOException e) { |
| 118 | e.printStackTrace(); |
| 119 | } |
| 120 | } |
| 121 | } |
| 122 | |
Michael Hanl | 9ca5edd | 2013-12-06 05:13:24 +0000 | [diff] [blame] | 123 | @Test |
| 124 | public void testLists() { |
Michael Hanl | b64fdce | 2013-12-08 23:17:19 +0000 | [diff] [blame] | 125 | StringBuffer b = new StringBuffer(); |
Michael Hanl | 4fe1346 | 2013-12-11 18:03:42 +0000 | [diff] [blame] | 126 | b.append("pubDate:<2013-12-10"); |
Michael Hanl | b64fdce | 2013-12-08 23:17:19 +0000 | [diff] [blame] | 127 | b.append(" AND "); |
| 128 | b.append("author:Kafka"); |
Michael Hanl | 0b70bb3 | 2014-05-06 16:09:41 +0000 | [diff] [blame] | 129 | CollectionQuery q = new CollectionQuery().addMetaFilterQuery(b.toString()); |
Michael Hanl | 1ee40e6 | 2014-03-26 17:22:26 +0000 | [diff] [blame] | 130 | q.addMetaExtend("author", "Hesse"); |
Michael Hanl | 9ca5edd | 2013-12-06 05:13:24 +0000 | [diff] [blame] | 131 | |
Michael Hanl | 0b70bb3 | 2014-05-06 16:09:41 +0000 | [diff] [blame] | 132 | System.out.println("--- ALL " + q.buildString()); |
Michael Hanl | 1ee40e6 | 2014-03-26 17:22:26 +0000 | [diff] [blame] | 133 | System.out.println(); |
Michael Hanl | 560b4cd | 2013-12-06 14:26:44 +0000 | [diff] [blame] | 134 | |
Michael Hanl | 9ca5edd | 2013-12-06 05:13:24 +0000 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | @Test |
| 138 | public void testJSONArray() throws JsonProcessingException { |
Michael Hanl | b64fdce | 2013-12-08 23:17:19 +0000 | [diff] [blame] | 139 | StringBuffer b = new StringBuffer(); |
Michael Hanl | 4fe1346 | 2013-12-11 18:03:42 +0000 | [diff] [blame] | 140 | b.append("pubDate:<2013-12-10"); |
Michael Hanl | b64fdce | 2013-12-08 23:17:19 +0000 | [diff] [blame] | 141 | b.append(" AND "); |
| 142 | b.append("author:Kafka"); |
Michael Hanl | 0b70bb3 | 2014-05-06 16:09:41 +0000 | [diff] [blame] | 143 | CollectionQuery q = new CollectionQuery().addMetaExtendQuery(b.toString()); |
| 144 | System.out.println("array repres " + q.buildString()); |
Michael Hanl | 1ee40e6 | 2014-03-26 17:22:26 +0000 | [diff] [blame] | 145 | System.out.println(); |
Michael Hanl | 560b4cd | 2013-12-06 14:26:44 +0000 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | @Test |
| 149 | public void testCollections() throws IOException { |
Michael Hanl | 942fa02 | 2014-02-24 19:48:57 +0000 | [diff] [blame] | 150 | CollectionQuery q = new CollectionQuery().addMetaFilter("corpusID", "A00"); |
Michael Hanl | 698da8c | 2013-12-08 21:12:36 +0000 | [diff] [blame] | 151 | q.addMetaExtend("corpusID", "A01"); |
| 152 | |
Michael Hanl | 0b70bb3 | 2014-05-06 16:09:41 +0000 | [diff] [blame] | 153 | System.out.println("results stringified " + q.buildString()); |
| 154 | System.out.println("results to meta" + q.toCollections()); |
Michael Hanl | 1ee40e6 | 2014-03-26 17:22:26 +0000 | [diff] [blame] | 155 | System.out.println(); |
Michael Hanl | 53b0fd0 | 2013-12-06 21:07:52 +0000 | [diff] [blame] | 156 | } |
| 157 | |
Michael Hanl | 698da8c | 2013-12-08 21:12:36 +0000 | [diff] [blame] | 158 | /** |
| 159 | * asserts equality. input should be equal to output, |
| 160 | * since there is no other metadata added to the meta query |
| 161 | * |
| 162 | * @throws IOException |
| 163 | */ |
Michael Hanl | 53b0fd0 | 2013-12-06 21:07:52 +0000 | [diff] [blame] | 164 | @Test |
| 165 | public void testResources() throws IOException { |
| 166 | String meta = "[{\"@type\":\"korap:meta-filter\",\"@value\":{\"@type\":\"korap:term\",\"@field\":\"korap:field#corpusID\",\"@value\":\"WPD\"}}]"; |
Michael Hanl | 942fa02 | 2014-02-24 19:48:57 +0000 | [diff] [blame] | 167 | CollectionQuery q = new CollectionQuery().addResource(meta); |
Michael Hanl | b64fdce | 2013-12-08 23:17:19 +0000 | [diff] [blame] | 168 | System.out.println("Testing Resource Meta data"); |
Michael Hanl | 0b70bb3 | 2014-05-06 16:09:41 +0000 | [diff] [blame] | 169 | org.junit.Assert.assertEquals("{\"collections\":" + meta + "}", q.toCollections()); |
Michael Hanl | 53b0fd0 | 2013-12-06 21:07:52 +0000 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | @Test |
| 173 | public void testA00() throws IOException { |
Michael Hanl | 942fa02 | 2014-02-24 19:48:57 +0000 | [diff] [blame] | 174 | CollectionQuery q = new CollectionQuery().addMetaExtend("corpusID", "A00").addMetaExtend("corpusID", "A01"); |
Michael Hanl | 0b70bb3 | 2014-05-06 16:09:41 +0000 | [diff] [blame] | 175 | System.out.println("A meta: " + q.buildString()); |
Michael Hanl | 1ee40e6 | 2014-03-26 17:22:26 +0000 | [diff] [blame] | 176 | System.out.println(); |
Michael Hanl | 53b0fd0 | 2013-12-06 21:07:52 +0000 | [diff] [blame] | 177 | } |
| 178 | |
Michael Hanl | 53b0fd0 | 2013-12-06 21:07:52 +0000 | [diff] [blame] | 179 | @Test |
Michael Hanl | b64fdce | 2013-12-08 23:17:19 +0000 | [diff] [blame] | 180 | public void testResources2() throws IOException { |
Michael Hanl | 698da8c | 2013-12-08 21:12:36 +0000 | [diff] [blame] | 181 | String meta = "[{\"@type\":\"korap:meta-filter\",\"@value\":{\"@type\":\"korap:term\",\"@field\":\"korap:field#corpusID\",\"@value\":\"WPD\"}}]"; |
Michael Hanl | 942fa02 | 2014-02-24 19:48:57 +0000 | [diff] [blame] | 182 | CollectionQuery q = new CollectionQuery().addResource(meta); |
Michael Hanl | 698da8c | 2013-12-08 21:12:36 +0000 | [diff] [blame] | 183 | q.addMetaFilter("textClass", "wissenschaft"); |
Michael Hanl | 0b70bb3 | 2014-05-06 16:09:41 +0000 | [diff] [blame] | 184 | System.out.println("stringified meta " + q.buildString()); |
| 185 | System.out.println("meta string " + q.toCollections()); |
Michael Hanl | 9ca5edd | 2013-12-06 05:13:24 +0000 | [diff] [blame] | 186 | } |
| 187 | |
Michael Hanl | 55191d9 | 2013-12-05 11:53:10 +0000 | [diff] [blame] | 188 | } |