blob: df6976d934a35b1a7c5a4207ba8ded2134333788 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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.apache.directory.scim.spec.resources;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import lombok.extern.slf4j.Slf4j;
import org.apache.directory.scim.spec.ObjectMapperFactory;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
@Slf4j
public class PhoneNumberJsonTest {
@Test
public void testPhoneNumberJson() throws Exception {
PhoneNumber phoneNumber = new PhoneNumber();
phoneNumber.setValue("tel:+12083869507");
ObjectMapper objectMapper = getObjectMapper();
String json = objectMapper.writerWithDefaultPrettyPrinter().writeValueAsString(phoneNumber);
PhoneNumber readValue = objectMapper.readValue(json, PhoneNumber.class);
assertEquals(phoneNumber.getNumber(), readValue.getNumber());
assertEquals(phoneNumber.getExtension(), readValue.getExtension());
assertEquals(phoneNumber.isDomainPhoneContext(), readValue.isDomainPhoneContext());
assertEquals(phoneNumber.isGlobalNumber(), readValue.isGlobalNumber());
assertEquals(phoneNumber.getPhoneContext(), readValue.getPhoneContext());
assertEquals(phoneNumber.getSubAddress(), readValue.getSubAddress());
assertEquals(phoneNumber.getPrimary(), readValue.getPrimary());
assertEquals(phoneNumber.getDisplay(), readValue.getDisplay());
assertEquals(phoneNumber.getType(), readValue.getType());
assertEquals(phoneNumber.getValue(), readValue.getValue());
log.info("done");
}
private ObjectMapper getObjectMapper() {
ObjectMapper objectMapper = ObjectMapperFactory.getObjectMapper();
objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
objectMapper.setSerializationInclusion(Include.NON_NULL);
return objectMapper;
}
}