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

ee.jakarta.tck.jsonp.api.pointertests.PointerTests 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.pointertests;

import ee.jakarta.tck.jsonp.api.common.TestResult;
import org.junit.jupiter.api.Test;
import org.opentest4j.AssertionFailedError;

// $Id$
/**
 * {@see RFC 6901}: JavaScript
 * Object Notation (JSON) Pointer compatibility tests.
* JSON-P API defines {@link jakarta.json.JsonPointer} interface to work with RFC * 6901 JSON Pointer. */ public class PointerTests { /** * Test JSON-P API response on pointer resolving.
* Checks set of JSON pointers from sample object of RFC 6901. * {@see RFC 6901: 4. * Evaluation} and * {@see RFC 6901: 5. * JSON String Representation}. * * @throws AssertionFailedError * when this test failed. * * @testName: jsonPointerResolveTest * @assertion_ids: JSONP:JAVADOC:643; JSONP:JAVADOC:582; JSONP:JAVADOC:583; * JSONP:JAVADOC:584; JSONP:JAVADOC:661; JSONP:JAVADOC:662; * JSONP:JAVADOC:663; * @test_Strategy: Test API response on various JSON pointer values. */ @Test public void jsonPointerResolveTest() { PointerResolve resolveTest = new PointerResolve(); final TestResult result = resolveTest.test(); result.eval(); } /** * Test JSON-P API response on * {@see RFC 6902: * 4.1. add} operation using RFC 6901 pointer instance.
* Checks set of simple JSON values.
* * @throws AssertionFailedError * when this test failed. * * @testName: jsonPointerAddOperationTest * @assertion_ids: JSONP:JAVADOC:642; JSONP:JAVADOC:582; JSONP:JAVADOC:583; * JSONP:JAVADOC:584; JSONP:JAVADOC:661; JSONP:JAVADOC:662; * JSONP:JAVADOC:663; * @test_Strategy: Test API response on various JSON pointer values. */ @Test public void jsonPointerAddOperationTest() { PointerAdd addTest = new PointerAdd(); final TestResult result = addTest.test(); result.eval(); } /** * Test JSON-P API response on * {@see RFC 6902: * 4.2. remove} operation using RFC 6901 pointer instance.
* Checks set of simple JSON values.
* * @throws AssertionFailedError * when this test failed. * * @testName: jsonPointerRemoveOperationTest * @assertion_ids: JSONP:JAVADOC:644; JSONP:JAVADOC:582; JSONP:JAVADOC:661; * @test_Strategy: Test API response on various JSON pointer values. */ @Test public void jsonPointerRemoveOperationTest() { PointerRemove removeTest = new PointerRemove(); final TestResult result = removeTest.test(); result.eval(); } /** * Test JSON-P API response on * {@see RFC 6902: * 4.3. replace} operation using RFC 6901 pointer instance.
* Checks set of simple JSON values.
* * @throws AssertionFailedError * when this test failed. * * @testName: jsonPointerReplaceOperationTest * @assertion_ids: JSONP:JAVADOC:645; JSONP:JAVADOC:582; JSONP:JAVADOC:583; * JSONP:JAVADOC:584; JSONP:JAVADOC:661; JSONP:JAVADOC:662; * JSONP:JAVADOC:663; * @test_Strategy: Test API response on various JSON pointer values. */ @Test public void jsonPointerReplaceOperationTest() { PointerReplace replaceTest = new PointerReplace(); final TestResult result = replaceTest.test(); result.eval(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy