This repository has been archived by the owner on Jan 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathObjectContextIntegrationTest.java
149 lines (133 loc) · 5.97 KB
/
ObjectContextIntegrationTest.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/*
* Licensed to Elastic Search and Shay Banon under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. Elastic Search licenses this
* file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.elasticsearch.osem.integration;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Date;
import org.elasticsearch.action.search.SearchResponse;
import org.elasticsearch.action.search.SearchType;
import org.elasticsearch.common.jackson.JsonParseException;
import org.elasticsearch.common.settings.ImmutableSettings;
import org.elasticsearch.index.query.xcontent.QueryBuilders;
import org.elasticsearch.node.Node;
import org.elasticsearch.node.NodeBuilder;
import org.elasticsearch.osem.core.ObjectContext;
import org.elasticsearch.osem.core.ObjectContextFactory;
import org.elasticsearch.osem.core.ObjectContextDeserializationException;
import org.elasticsearch.osem.pojo.twitter.Tweet;
import org.elasticsearch.osem.pojo.users.Contact;
import org.elasticsearch.osem.pojo.users.EmailContact;
import org.elasticsearch.osem.pojo.users.PhoneContact;
import org.elasticsearch.osem.pojo.users.User;
import org.elasticsearch.search.SearchHit;
import org.testng.Assert;
import org.testng.AssertJUnit;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
/**
*
* @author alois.cochard
*
*/
public class ObjectContextIntegrationTest {
private Node node;
private ObjectContext context;
@BeforeMethod()
public void doStart() {
context = ObjectContextFactory.create();
// Starting node
ImmutableSettings.Builder settings = NodeBuilder.nodeBuilder().settings();
settings.put("gateway.type", "none");
settings.put("path.data", "build/tmp/data");
// Manual refresh
settings.put("index.refreshInterval", "-1");
node = NodeBuilder.nodeBuilder().settings(settings).build();
node.start();
}
@AfterMethod()
public void doStop() {
node.stop();
}
@Test
public void pojoTest() throws ObjectContextDeserializationException, JsonParseException, IOException {
Tweet tweet = new Tweet();
tweet.setUser("aloiscochard");
tweet.setMessage("#ElasticSearch: You know, for search !");
tweet.setDate(new Date());
context.add(Tweet.class);
// Create
node.client().admin().indices().prepareCreate("twitter").execute().actionGet();
// Mapping
node.client().admin().indices().preparePutMapping("twitter").setSource(context.getMapping(Tweet.class)).execute().actionGet();
// Add
node.client().prepareIndex("twitter", "tweet", "1").setSource(context.write(tweet)).execute().actionGet();
// Refresh
node.client().admin().indices().prepareRefresh("twitter").execute().actionGet();
// Search
SearchResponse searchResponse = node.client().prepareSearch("twitter").setSearchType(SearchType.DFS_QUERY_AND_FETCH).setQuery(
QueryBuilders.termQuery("user", "aloiscochard")).setExplain(true).execute().actionGet();
for (SearchHit hit : searchResponse.getHits()) {
Tweet t = context.read(hit);
AssertJUnit.assertNotNull(t);
AssertJUnit.assertEquals(tweet.getUser(), t.getUser());
AssertJUnit.assertEquals(tweet.getMessage(), t.getMessage());
AssertJUnit.assertEquals(tweet.getDate(), t.getDate());
return;
}
Assert.fail();
}
@Test
public void pojoWithIdTest() throws ObjectContextDeserializationException, JsonParseException, IOException {
Collection<Contact> contacts = new ArrayList<Contact>();
EmailContact email = new EmailContact();
email.setEmail("[email protected]");
contacts.add(email);
PhoneContact phone = new PhoneContact();
phone.setNumber("++XX XXX XX XX");
contacts.add(phone);
User user = new User();
user.setContacts(contacts);
user.setName("aloiscochard");
context.add(User.class);
// Create
node.client().admin().indices().prepareCreate("users").execute().actionGet();
// Mapping
node.client().admin().indices().preparePutMapping("users").setSource(context.getMapping(User.class)).execute().actionGet();
// Add
node.client().prepareIndex("users", "user").setSource(context.write(user)).execute().actionGet();
// Refresh
node.client().admin().indices().prepareRefresh("users").execute().actionGet();
// Search
SearchResponse searchResponse = node.client().prepareSearch("users").setSearchType(SearchType.DFS_QUERY_AND_FETCH).setQuery(
QueryBuilders.termQuery("name", "aloiscochard")).setExplain(true).execute().actionGet();
for (SearchHit hit : searchResponse.getHits()) {
User u = context.read(hit);
AssertJUnit.assertNotNull(u);
Assert.assertNotNull(u.getId());
Assert.assertFalse(u.getId().isEmpty());
Assert.assertEquals(user.getName(), u.getName());
Assert.assertNotNull(u.getContacts());
// TODO [alois.cochard] check inner objects
return;
}
Assert.fail();
}
}