summaryrefslogtreecommitdiffstats
path: root/keystone-model/src/test/java/com/woorea/openstack/keystone/model/UsersTest.java
diff options
context:
space:
mode:
authorRob Daugherty <rd472p@att.com>2018-09-10 17:45:52 -0400
committerRob Daugherty <rd472p@att.com>2018-09-10 17:53:28 -0400
commit9e0219abc61b28b94d88fefbf8cc4a13d1683a67 (patch)
tree2e1e76e80bcea8c398d2a22851dce66680e68352 /keystone-model/src/test/java/com/woorea/openstack/keystone/model/UsersTest.java
parent77ba0e5627d39af1459cf3058fb521e68b475220 (diff)
Functional so/libs unit tests
Unit tests to prepare for migration from the codehaus to the fasterxml implementation of jackson. Iincreases the code coverage metric from 51% to 70%. Change-Id: I6338214f3de9df95956b46d4e313d00052eb8692 Issue-ID: SO-1011 Signed-off-by: Rob Daugherty <rd472p@att.com>
Diffstat (limited to 'keystone-model/src/test/java/com/woorea/openstack/keystone/model/UsersTest.java')
-rw-r--r--keystone-model/src/test/java/com/woorea/openstack/keystone/model/UsersTest.java73
1 files changed, 62 insertions, 11 deletions
diff --git a/keystone-model/src/test/java/com/woorea/openstack/keystone/model/UsersTest.java b/keystone-model/src/test/java/com/woorea/openstack/keystone/model/UsersTest.java
index 8a3f16d..acb96a3 100644
--- a/keystone-model/src/test/java/com/woorea/openstack/keystone/model/UsersTest.java
+++ b/keystone-model/src/test/java/com/woorea/openstack/keystone/model/UsersTest.java
@@ -1,8 +1,9 @@
/*-
- * ONAP-SO
* ============LICENSE_START=======================================================
- * Copyright 2018 Huawei Intellectual Property. All rights reserved.
- * ===================================================================
+ * ONAP - SO
+ * ================================================================================
+ * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
* Licensed 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
@@ -19,20 +20,70 @@
package com.woorea.openstack.keystone.model;
+import com.woorea.openstack.keystone.model.User;
+import com.woorea.openstack.keystone.model.Users;
+import java.util.List;
+import org.codehaus.jackson.map.DeserializationConfig;
+import org.codehaus.jackson.map.ObjectMapper;
+import org.codehaus.jackson.map.SerializationConfig;
+import org.codehaus.jackson.map.annotate.JsonSerialize.Inclusion;
+import org.junit.Assert;
import org.junit.Test;
+import org.skyscreamer.jsonassert.JSONAssert;
+import org.skyscreamer.jsonassert.JSONCompareMode;
public class UsersTest {
- Users users = new Users();
+ private static final String EOL = System.lineSeparator();
+
+ private static final String JSON_FULL = "{" + EOL
+ + " \"users\" : [ {" + EOL
+ + " \"id\" : \"id\"," + EOL
+ + " \"username\" : \"username\"," + EOL
+ + " \"password\" : \"password\"," + EOL
+ + " \"tenantId\" : \"tenantid\"," + EOL
+ + " \"name\" : \"name\"," + EOL
+ + " \"email\" : \"email\"," + EOL
+ + " \"enabled\" : false" + EOL
+ + " }, {" + EOL
+ + " \"id\" : \"id\"," + EOL
+ + " \"username\" : \"username\"," + EOL
+ + " \"password\" : \"password\"," + EOL
+ + " \"tenantId\" : \"tenantid\"," + EOL
+ + " \"name\" : \"name\"," + EOL
+ + " \"email\" : \"email\"," + EOL
+ + " \"enabled\" : false" + EOL
+ + " } ]" + EOL
+ + "}";
+
+ private ObjectMapper objectMapper = new ObjectMapper()
+ .setSerializationInclusion(Inclusion.NON_NULL)
+ .enable(SerializationConfig.Feature.INDENT_OUTPUT)
+ .enable(DeserializationConfig.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY);
@Test
- public void getList() throws Exception {
- users.getList();
+ public void testSerialization() throws Exception {
+ System.out.println("CLASS: " + Users.class.getName());
+ System.out.println("TEST JSON: " + JSON_FULL);
+ Users users = objectMapper.readValue(JSON_FULL, Users.class);
+ String json = objectMapper.writeValueAsString(users);
+ System.out.println("RE-SERIALIZED OBJECT: " + json);
+ JSONAssert.assertEquals(JSON_FULL, json, JSONCompareMode.LENIENT);
}
- @Test(expected = NullPointerException.class)
- public void iterator() throws Exception {
- users.iterator();
+ @Test
+ public void testMethods() throws Exception {
+ Users users = objectMapper.readValue(JSON_FULL, Users.class);
+ users.toString();
+
+ List<User> list = users.getList();
+ Assert.assertNotNull(list);
+ Assert.assertEquals(2, list.size());
+
+ int cnt = 0;
+ for (@SuppressWarnings("unused") User x : users) {
+ ++cnt;
+ }
+ Assert.assertEquals(2, cnt);
}
-
-} \ No newline at end of file
+}