/* * 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.syncope.common.lib; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import com.fasterxml.jackson.core.type.TypeReference; import com.fasterxml.jackson.databind.ObjectMapper; import java.io.IOException; import java.io.StringWriter; import java.util.UUID; import org.apache.syncope.common.lib.patch.PasswordPatch; import org.apache.syncope.common.lib.patch.StringPatchItem; import org.apache.syncope.common.lib.patch.StringReplacePatchItem; import org.apache.syncope.common.lib.patch.UserPatch; import org.apache.syncope.common.lib.report.UserReportletConf; import org.apache.syncope.common.lib.to.AttrTO; import org.apache.syncope.common.lib.to.ConnObjectTO; import org.apache.syncope.common.lib.to.GroupTO; import org.apache.syncope.common.lib.to.PropagationStatus; import org.apache.syncope.common.lib.to.ProvisioningResult; import org.apache.syncope.common.lib.to.ReportTO; import org.apache.syncope.common.lib.to.WorkflowFormPropertyTO; import org.apache.syncope.common.lib.types.PatchOperation; import org.junit.Test; public class JSONTest { @Test public void map() throws IOException { WorkflowFormPropertyTO prop = new WorkflowFormPropertyTO(); prop.getEnumValues().put("key1", "value1"); prop.getEnumValues().put("key2", "value2"); ObjectMapper mapper = new ObjectMapper(); StringWriter writer = new StringWriter(); mapper.writeValue(writer, prop); WorkflowFormPropertyTO unserializedProp = mapper.readValue(writer.toString(), WorkflowFormPropertyTO.class); assertEquals(prop, unserializedProp); } @Test public void reportletConfImplementations() throws IOException { ReportTO report = new ReportTO(); report.setName("testReportForCreate"); report.getReportletConfs().add(new UserReportletConf("first")); report.getReportletConfs().add(new UserReportletConf("second")); ObjectMapper mapper = new ObjectMapper(); StringWriter writer = new StringWriter(); mapper.writeValue(writer, report); ReportTO actual = mapper.readValue(writer.toString(), ReportTO.class); assertEquals(report, actual); } @Test public void patch() throws IOException { UserPatch patch = new UserPatch(); patch.setKey(UUID.randomUUID().toString()); patch.setUsername(new StringReplacePatchItem.Builder().value("newusername").build()); assertNotNull(patch.getUsername().getValue()); patch.setPassword(new PasswordPatch.Builder(). onSyncope(false). resource("ext1").resource("ext2"). value("newpassword"). build()); assertNotNull(patch.getPassword().getValue()); patch.getRoles().add(new StringPatchItem.Builder().operation(PatchOperation.DELETE).value("role").build()); ObjectMapper mapper = new ObjectMapper(); StringWriter writer = new StringWriter(); mapper.writeValue(writer, patch); UserPatch actual = mapper.readValue(writer.toString(), UserPatch.class); assertEquals(patch, actual); } @Test public void provisioningResult() throws IOException { GroupTO group = new GroupTO(); group.setName(UUID.randomUUID().toString()); group.setRealm(SyncopeConstants.ROOT_REALM); group.getVirAttrs().add(new AttrTO.Builder().schema("rvirtualdata").value("rvirtualvalue").build()); group.getADynMembershipConds().put("USER", "username==a*"); ProvisioningResult<GroupTO> original = new ProvisioningResult<>(); original.setEntity(group); PropagationStatus status = new PropagationStatus(); status.setFailureReason("failed"); status.setBeforeObj(new ConnObjectTO()); original.getPropagationStatuses().add(status); ObjectMapper mapper = new ObjectMapper(); StringWriter writer = new StringWriter(); mapper.writeValue(writer, original); ProvisioningResult<GroupTO> actual = mapper.readValue( writer.toString(), new TypeReference<ProvisioningResult<GroupTO>>() { }); assertEquals(original, actual); } }