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

ee.jakarta.tck.jsonp.api.mergetests.MergeRemoveValue 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.SimpleValues;
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.
* Checks scenario described in * {@see RFC 7396: 1. * Introduction}: {@code null} values in the merge patch are given special * meaning to indicate the removal of existing values in the target. */ public class MergeRemoveValue extends MergeCommon { private static final Logger LOGGER = Logger.getLogger(MergeRemoveValue.class.getName()); /** * Creates an instance of RFC 7396 value removal test. */ MergeRemoveValue() { super(); } /** * Test RFC 7396: Removing existing values. Suite entry point. * * @return Result of all tests in this suite. */ TestResult test() { final TestResult result = new TestResult( "RFC 7396: Remove existing values"); LOGGER.info("Testing RFC 7396: Remove existing values"); testStringOnEmptyObject(result); testStringOnsimpleObject(result); testIntOnEmptyObject(result); testIntOnsimpleObject(result); testBoolOnEmptyObject(result); testBoolOnsimpleObject(result); testObjectOnEmptyObject(result); testObjectOnsimpleObject(result); return result; } /** * Test RFC 7396 patch and diff for {@code String} on empty JSON object. * * @param result * Tests result record. */ private void testStringOnEmptyObject(final TestResult result) { LOGGER.info(" - for String to produce empty JSON object"); final JsonObject in = SimpleValues.createSimpleObjectStr(); final JsonObject patch = SimpleValues.createPatchRemoveStr(); final JsonObject check = SimpleValues.createEmptyObject(); simpleMerge(result, in, patch, check); simpleDiff(result, in, check, patch); } /** * Test RFC 7396 patch and diff for {@code String} on simple JSON object. * * @param result * Tests result record. */ private void testStringOnsimpleObject(final TestResult result) { LOGGER.info(" - for String on simple JSON object"); final JsonObject in = SimpleValues.createSimpleObjectWithStr(); final JsonObject patch = SimpleValues.createPatchRemoveStr(); final JsonObject check = SimpleValues.createSimpleObject(); simpleMerge(result, in, patch, check); simpleDiff(result, in, check, patch); } /** * Test RFC 7396 patch and diff for {@code int} on empty JSON object. * * @param result * Tests result record. */ private void testIntOnEmptyObject(final TestResult result) { LOGGER.info(" - for int to produce empty JSON object"); final JsonObject in = SimpleValues.createSimpleObjectInt(); final JsonObject patch = SimpleValues.createPatchRemoveInt(); final JsonObject check = SimpleValues.createEmptyObject(); simpleMerge(result, in, patch, check); simpleDiff(result, in, check, patch); } /** * Test RFC 7396 patch and diff for {@code int} on simple JSON object. * * @param result * Tests result record. */ private void testIntOnsimpleObject(final TestResult result) { LOGGER.info(" - for int on simple JSON object"); final JsonObject in = SimpleValues.createSimpleObjectWithInt(); final JsonObject patch = SimpleValues.createPatchRemoveInt(); final JsonObject check = SimpleValues.createSimpleObject(); simpleMerge(result, in, patch, check); simpleDiff(result, in, check, patch); } /** * Test RFC 7396 patch and diff for {@code boolean} on empty JSON object. * * @param result * Tests result record. */ private void testBoolOnEmptyObject(final TestResult result) { LOGGER.info(" - for boolean to produce empty JSON object"); final JsonObject in = SimpleValues.createSimpleObjectBool(); final JsonObject patch = SimpleValues.createPatchRemoveBool(); final JsonObject check = SimpleValues.createEmptyObject(); simpleMerge(result, in, patch, check); simpleDiff(result, in, check, patch); } /** * Test RFC 7396 patch and diff for {@code boolean} on simple JSON object. * * @param result * Tests result record. */ private void testBoolOnsimpleObject(final TestResult result) { LOGGER.info(" - for boolean on simple JSON object"); final JsonObject in = SimpleValues.createSimpleObjectWithBool(); final JsonObject patch = SimpleValues.createPatchRemoveBool(); final JsonObject check = SimpleValues.createSimpleObject(); simpleMerge(result, in, patch, check); simpleDiff(result, in, check, patch); } /** * Test RFC 7396 patch and diff for {@code JsonObject} on empty JSON object. * * @param result * Tests result record. */ private void testObjectOnEmptyObject(final TestResult result) { LOGGER.info(" - for JsonObject to produce empty JSON object"); final JsonObject in = SimpleValues.createSimpleObjectObject(); final JsonObject patch = SimpleValues.createPatchRemoveObject(); final JsonObject check = SimpleValues.createEmptyObject(); simpleMerge(result, in, patch, check); simpleDiff(result, in, check, patch); } /** * Test RFC 7396 patch and diff for {@code JsonObject} on simple JSON object. * * @param result * Tests result record. */ private void testObjectOnsimpleObject(final TestResult result) { LOGGER.info(" - for JsonObject on compoubnd JSON object"); final JsonObject in = SimpleValues.createCompoundObjectWithObject(); final JsonObject patch = SimpleValues.createPatchRemoveObject(); final JsonObject check = SimpleValues.createCompoundObject(); simpleMerge(result, in, patch, check); simpleDiff(result, in, check, patch); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy