All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ee.jakarta.tck.jsonp.api.mergetests.MergeRFCSample Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2020, 2022 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0, which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * This Source Code may also be made available under the following Secondary
 * Licenses when the conditions for such availability set forth in the
 * Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
 * version 2 with the GNU Classpath Exception, which is available at
 * https://www.gnu.org/software/classpath/license.html.
 *
 * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
 */

package ee.jakarta.tck.jsonp.api.mergetests;

import ee.jakarta.tck.jsonp.api.common.MergeRFCObject;
import ee.jakarta.tck.jsonp.api.common.TestResult;
import jakarta.json.JsonObject;

import java.util.logging.Logger;

// $Id$
/**
 * RFC 7396: JavaScript Object Notation (JSON) Merge Patch compatibility
 * tests.
* Test based on * {@see RFC 7396: 3. * Example} objects. */ public class MergeRFCSample extends MergeCommon { private static final Logger LOGGER = Logger.getLogger(MergeRFCSample.class.getName()); /** * Creates an instance of RFC 7396 value replacing test. */ MergeRFCSample() { super(); } /** * Test RFC 7396: Adding non existing values. Suite entry point. * * @return Result of all tests in this suite. */ TestResult test() { final TestResult result = new TestResult("RFC 7396: Example JSON object"); LOGGER.info("Testing RFC 7396: Example JSON object"); testMerge(result); testDiff(result); return result; } /** * Test RFC 7396 patch for example objects. * * @param result * Tests result record. */ private void testMerge(final TestResult result) { LOGGER.info(" - merge"); final JsonObject in = MergeRFCObject.createRFCSourceObject(); final JsonObject patch = MergeRFCObject.createRFCPatchObject(); final JsonObject check = MergeRFCObject.createRFCTargetObject(); simpleMerge(result, in, patch, check); simpleDiff(result, in, check, patch); } /** * Test RFC 7396 diff for example objects. * * @param result * Tests result record. */ private void testDiff(final TestResult result) { LOGGER.info(" - diff"); final JsonObject in = MergeRFCObject.createRFCSourceObject(); final JsonObject diff = MergeRFCObject.createRFCPatchObject(); final JsonObject out = MergeRFCObject.createRFCTargetObject(); simpleDiff(result, in, out, diff); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy