2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
21 package com.woorea.openstack.keystone.model.authentication;
23 import com.woorea.openstack.keystone.model.authentication.UsernamePassword.PasswordCredentials;
24 import org.codehaus.jackson.map.DeserializationConfig;
25 import org.codehaus.jackson.map.ObjectMapper;
26 import org.codehaus.jackson.map.SerializationConfig;
27 import org.codehaus.jackson.map.annotate.JsonSerialize.Inclusion;
28 import org.junit.Assert;
29 import org.junit.Test;
30 import org.skyscreamer.jsonassert.JSONAssert;
31 import org.skyscreamer.jsonassert.JSONCompareMode;
33 public class PasswordCredentialsTest {
35 private static final String EOL = System.lineSeparator();
37 private static final String JSON_FULL = "{" + EOL
38 + " \"username\" : \"username\"," + EOL
39 + " \"password\" : \"password\"" + EOL
42 private ObjectMapper objectMapper = new ObjectMapper()
43 .setSerializationInclusion(Inclusion.NON_NULL)
44 .enable(SerializationConfig.Feature.INDENT_OUTPUT)
45 .enable(DeserializationConfig.Feature.ACCEPT_SINGLE_VALUE_AS_ARRAY);
48 public void testSerialization() throws Exception {
49 System.out.println("CLASS: " + PasswordCredentials.class.getName());
50 System.out.println("TEST JSON: " + JSON_FULL);
51 PasswordCredentials passwordcredentials = objectMapper.readValue(JSON_FULL, PasswordCredentials.class);
52 String json = objectMapper.writeValueAsString(passwordcredentials);
53 System.out.println("RE-SERIALIZED OBJECT: " + json);
54 JSONAssert.assertEquals(JSON_FULL, json, JSONCompareMode.LENIENT);
58 public void testMethods() throws Exception {
59 PasswordCredentials passwordcredentials = objectMapper.readValue(JSON_FULL, PasswordCredentials.class);
60 passwordcredentials.toString();
62 String password = passwordcredentials.getPassword();
63 Assert.assertNotNull(password);
64 passwordcredentials.setPassword(password);
66 String username = passwordcredentials.getUsername();
67 Assert.assertNotNull(username);
68 passwordcredentials.setUsername(username);