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

ee.jakarta.tck.jsonp.api.jsonobjecttests.ClientTests 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
 */

/*
 * $Id$
 */
package ee.jakarta.tck.jsonp.api.jsonobjecttests;

import ee.jakarta.tck.jsonp.api.common.TestResult;
import ee.jakarta.tck.jsonp.common.JSONP_Data;
import ee.jakarta.tck.jsonp.common.JSONP_Util;

import java.io.StringReader;
import java.io.StringWriter;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.HashMap;
import java.util.Map;
import java.util.logging.Logger;

import jakarta.json.Json;
import jakarta.json.JsonArray;
import jakarta.json.JsonArrayBuilder;
import jakarta.json.JsonNumber;
import jakarta.json.JsonObject;
import jakarta.json.JsonObjectBuilder;
import jakarta.json.JsonReader;
import jakarta.json.JsonString;
import jakarta.json.JsonValue;
import jakarta.json.JsonWriter;
import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.fail;

public class ClientTests {

  private static final Logger LOGGER = Logger.getLogger(ClientTests.class.getName());

  /* Tests */

  /*
   * @testName: jsonObjectTest1
   * 
   * @assertion_ids: JSONP:JAVADOC:58; JSONP:JAVADOC:61; JSONP:JAVADOC:64;
   * JSONP:JAVADOC:67; JSONP:JAVADOC:70; JSONP:JAVADOC:73; JSONP:JAVADOC:76;
   * JSONP:JAVADOC:80; JSONP:JAVADOC:86; JSONP:JAVADOC:400; JSONP:JAVADOC:401;
   * JSONP:JAVADOC:402; JSONP:JAVADOC:403; JSONP:JAVADOC:404; JSONP:JAVADOC:406;
   * JSONP:JAVADOC:408; JSONP:JAVADOC:409;
   * 
   * @test_Strategy: Tests JsonObject/JsonObjectBuilder API's. Build a
   * JsonObject using the JsonObjectBuilder API's then verify that the Map of
   * JsonObject values matches the expected Map of JsonObject values.
   */
  @Test
  public void jsonObjectTest1() {
    try {
      LOGGER.info("Create sample JsonObject for testing");
      JsonObject object = JSONP_Util.createSampleJsonObject();

      LOGGER.info("Create sample JsonArray for testing");
      JsonArray array = JSONP_Util.createSampleJsonArray();

      LOGGER.info("Create the expected map of JsonObject values");
      Map expMap = new HashMap<>();
      expMap.put("false", JsonValue.FALSE);
      expMap.put("true", JsonValue.TRUE);
      expMap.put("null", JsonValue.NULL);
      expMap.put("doublemin", JSONP_Util.createJsonNumber(Double.MIN_VALUE));
      expMap.put("doublemax", JSONP_Util.createJsonNumber(Double.MAX_VALUE));
      expMap.put("intmin", JSONP_Util.createJsonNumber(Integer.MIN_VALUE));
      expMap.put("intmax", JSONP_Util.createJsonNumber(Integer.MAX_VALUE));
      expMap.put("longmin", JSONP_Util.createJsonNumber(Long.MIN_VALUE));
      expMap.put("longmax", JSONP_Util.createJsonNumber(Long.MAX_VALUE));
      expMap.put("bigdecimal",
          JSONP_Util.createJsonNumber(BigDecimal.valueOf(123456789.123456789)));
      expMap.put("biginteger",
          JSONP_Util.createJsonNumber(new BigInteger("123456789")));
      expMap.put("string", JSONP_Util.createJsonString("string1"));
      expMap.put("false2", JsonValue.FALSE);
      expMap.put("true2", JsonValue.TRUE);
      expMap.put("null2", JsonValue.NULL);
      expMap.put("object", object);
      expMap.put("array", array);
      JSONP_Util.dumpMap(expMap, "Expected Map");

      LOGGER.info("Create JsonObject using all JsonObjectBuilder API's");
      JsonObject myJsonObject = Json.createObjectBuilder()
          .add("false", JsonValue.FALSE).add("true", JsonValue.TRUE)
          .add("null", JsonValue.NULL).add("doublemin", Double.MIN_VALUE)
          .add("doublemax", Double.MAX_VALUE).add("intmin", Integer.MIN_VALUE)
          .add("intmax", Integer.MAX_VALUE).add("longmin", Long.MIN_VALUE)
          .add("longmax", Long.MAX_VALUE)
          .add("bigdecimal", BigDecimal.valueOf(123456789.123456789))
          .add("biginteger", new BigInteger("123456789"))
          .add("string", "string1").add("false2", false).add("true2", true)
          .addNull("null2").add("object", object).add("array", array).build();

      Map actMap = myJsonObject;
      JSONP_Util.dumpMap(actMap, "Actual Map");
      LOGGER.info(
          "Compare actual Map of JsonObject values with expected Map of JsonObject values");
      assertTrue(JSONP_Util.assertEqualsMap(expMap, actMap), "jsonObjectTest1 Failed");
    } catch (Exception e) {
      fail("jsonObjectTest1 Failed: ", e);
    }
  }

  /*
   * @testName: jsonObjectTest2
   * 
   * @assertion_ids: JSONP:JAVADOC:86; JSONP:JAVADOC:58; JSONP:JAVADOC:61;
   * JSONP:JAVADOC:64; JSONP:JAVADOC:67; JSONP:JAVADOC:70; JSONP:JAVADOC:73;
   * JSONP:JAVADOC:76; JSONP:JAVADOC:80; JSONP:JAVADOC:185; JSONP:JAVADOC:400;
   * JSONP:JAVADOC:401; JSONP:JAVADOC:402; JSONP:JAVADOC:403; JSONP:JAVADOC:404;
   * JSONP:JAVADOC:406; JSONP:JAVADOC:408; JSONP:JAVADOC:409;
   * 
   * @test_Strategy: Tests JsonObject/JsonObjectBuilder API's. Build a
   * JsonObject using the JsonObjectBuilder API's. Write the JsonObject to a
   * JsonWriter and read it back using a JsonReader. Verify that JsonObject
   * written to the JsonWriter and then read back using the JsonReader are
   * equal.
   */
  @Test
  public void jsonObjectTest2() {
    try {
      LOGGER.info("Create sample JsonObject for testing");
      JsonObject object = JSONP_Util.createSampleJsonObject();

      LOGGER.info("Create sample JsonArray for testing");
      JsonArray array = JSONP_Util.createSampleJsonArray();

      LOGGER.info(
          "Create JsonObject 'myJsonObject1' using all JsonObjectBuilder API's");
      JsonObject myJsonObject1 = Json.createObjectBuilder()
          .add("false", JsonValue.FALSE).add("true", JsonValue.TRUE)
          .add("null", JsonValue.NULL).add("doublemin", Double.MIN_VALUE)
          .add("doublemax", Double.MAX_VALUE).add("intmin", Integer.MIN_VALUE)
          .add("intmax", Integer.MAX_VALUE).add("longmin", Long.MIN_VALUE)
          .add("longmax", Long.MAX_VALUE)
          .add("bigdecimal", BigDecimal.valueOf(123456789.123456789))
          .add("biginteger", new BigInteger("123456789"))
          .add("string", "string1").add("false2", false).add("true2", true)
          .addNull("null2").add("object", object).add("array", array).build();

      LOGGER.info("Write the JsonObject 'myJsonObject1' out to a JsonWriter");
      StringWriter sw = new StringWriter();
      try (JsonWriter writer = Json.createWriter(sw)) {
        writer.writeObject(myJsonObject1);
        LOGGER.info("Close JsonWriter");
      }
      LOGGER.info("Save contents of the JsonWriter as a String");
      String contents = sw.toString();
      LOGGER.info("Dump contents of JsonWriter as a String");
      LOGGER.info("JsonWriterContents=" + contents);
      LOGGER.info(
          "Read the JsonObject back into 'myJsonObject2' using a JsonReader");
      JsonObject myJsonObject2;
      try (JsonReader reader = Json.createReader(new StringReader(contents))) {
        myJsonObject2 = reader.readObject();
        LOGGER.info("Save contents of the JsonReader as a String");
        contents = reader.toString();
      }
      LOGGER.info("Dump contents of JsonReader as a String");
      LOGGER.info("JsonReaderContents=" + contents);

      LOGGER.info("Compare myJsonObject1 and myJsonObject2 for equality");
      assertTrue(JSONP_Util.assertEqualsJsonObjects(myJsonObject1, myJsonObject2), "jsonObjectTest2 Failed");
    } catch (Exception e) {
      fail("jsonObjectTest2 Failed: ", e);
    }
  }

  /*
   * @testName: jsonObjectTest3
   * 
   * @assertion_ids: JSONP:JAVADOC:58; JSONP:JAVADOC:61; JSONP:JAVADOC:64;
   * JSONP:JAVADOC:67; JSONP:JAVADOC:70; JSONP:JAVADOC:73; JSONP:JAVADOC:76;
   * JSONP:JAVADOC:80; JSONP:JAVADOC:86; JSONP:JAVADOC:215; JSONP:JAVADOC:101;
   * JSONP:JAVADOC:403; JSONP:JAVADOC:264; JSONP:JAVADOC:265; JSONP:JAVADOC:436;
   * JSONP:JAVADOC:400; JSONP:JAVADOC:401; JSONP:JAVADOC:402; JSONP:JAVADOC:404;
   * JSONP:JAVADOC:406; JSONP:JAVADOC:408; JSONP:JAVADOC:409; JSONP:JAVADOC:439;
   * JSONP:JAVADOC:441; JSONP:JAVADOC:443; JSONP:JAVADOC:527; JSONP:JAVADOC:529;
   * JSONP:JAVADOC:531; JSONP:JAVADOC:533; JSONP:JAVADOC:539;
   * 
   * @test_Strategy: Tests JsonObject/JsonObjectBuilder API's. Build a
   * JsonObject using the JsonObjectBuilder API's. Verify contents of JsonObject
   * using JsonObject().getJsonArray(String),
   * JsonObject().getJsonNumber(String), JsonObject().getJsonObject(String),
   * JsonObject().getJsonString(String), JsonObject.getInt(String) and
   * JsonObject.getString(String), JsonObject.getBoolean(String),
   * JsonObject.getBoolean(String, boolean), JsonObject.getInt(String, int),
   * JsonObject.getString(String, String)
   */
  @Test
  public void jsonObjectTest3() {
    boolean pass = true;
    try {
      LOGGER.info("Create sample JsonObject for testing");
      JsonObject object = JSONP_Util.createSampleJsonObject();

      LOGGER.info("Create sample JsonArray for testing");
      JsonArray array = JSONP_Util.createSampleJsonArray();

      LOGGER.info("Create myObject JsonObject with 22 name/value pairs");
      JsonObject myObject = Json.createObjectBuilder().add("key0", -1)
          .add("key1", +1).add("key2", 1).add("key3", -1e3).add("key4", +1e3)
          .add("key5", 1e3).add("key6", -2E3).add("key7", +2E3).add("key8", 2E3)
          .add("key9", Long.MAX_VALUE).add("key10", Long.MIN_VALUE)
          .add("key11", Integer.MAX_VALUE).add("key12", Integer.MIN_VALUE)
          .add("key13", Double.MAX_VALUE).add("key14", Double.MIN_VALUE)
          .add("key15", BigDecimal.valueOf(123456789.123456789))
          .add("key16", new BigInteger("123456789"))
          .add("key17", JsonValue.TRUE).add("key18", JsonValue.FALSE)
          .add("key19", JsonValue.NULL).add("key20", JSONP_Data.asciiCharacters)
          .add("key21", false).add("key22", true).addNull("key23")
          .add("key24", object).add("key25", array).build();
      LOGGER.info("Checking intValue of key0 for correctness");
      if (!JSONP_Util.assertEquals(-1,
          myObject.getJsonNumber("key0").intValue()))
        pass = false;
      LOGGER.info("key0 via JsonNumber.toString()="
          + myObject.getJsonNumber("key0").toString());
      LOGGER.info("Checking intValue of key1 for correctness");
      if (!JSONP_Util.assertEquals(1, myObject.getInt("key1")))
        pass = false;
      LOGGER.info("key1 via JsonNumber.toString()=" + myObject.getInt("key1"));
      LOGGER.info("Checking intValue of key2 for correctness");
      if (!JSONP_Util.assertEquals(1,
          myObject.getJsonNumber("key2").intValue()))
        pass = false;
      LOGGER.info("key2 via JsonNumber.toString()="
          + myObject.getJsonNumber("key2").toString());
      LOGGER.info("Checking intValue of key3 for correctness");
      if (!JSONP_Util.assertEquals(-1000, myObject.getInt("key3")))
        pass = false;
      LOGGER.info("key3 via JsonNumber.toString()="
          + myObject.getJsonNumber("key3").toString());
      LOGGER.info("Checking intValue of key4 for correctness");
      if (!JSONP_Util.assertEquals(1000,
          myObject.getJsonNumber("key4").intValue()))
        pass = false;
      LOGGER.info("key4 via JsonNumber.toString()="
          + myObject.getJsonNumber("key4").toString());
      LOGGER.info("Checking intValue of key5 for correctness");
      if (!JSONP_Util.assertEquals(1000,
          myObject.getJsonNumber("key5").intValue()))
        pass = false;
      LOGGER.info("key5 via JsonNumber.toString()="
          + myObject.getJsonNumber("key5").toString());
      LOGGER.info("Checking intValue of key6 for correctness");
      if (!JSONP_Util.assertEquals(-2000,
          myObject.getJsonNumber("key6").intValue()))
        pass = false;
      LOGGER.info("key6 via JsonNumber.toString()="
          + myObject.getJsonNumber("key6").toString());
      LOGGER.info("Checking intValue of key7 for correctness");
      if (!JSONP_Util.assertEquals(2000,
          myObject.getJsonNumber("key7").intValue()))
        pass = false;
      LOGGER.info("key7 via JsonNumber.toString()="
          + myObject.getJsonNumber("key7").toString());
      LOGGER.info("Checking intValue of key8 for correctness");
      if (!JSONP_Util.assertEquals(2000,
          myObject.getJsonNumber("key8").intValue()))
        pass = false;
      LOGGER.info("key8 via JsonNumber.toString()="
          + myObject.getJsonNumber("key8").toString());
      LOGGER.info("Checking longValue of key9 for correctness");
      if (!JSONP_Util.assertEquals(Long.MAX_VALUE,
          myObject.getJsonNumber("key9").longValue()))
        pass = false;
      LOGGER.info("LongMax via JsonNumber.toString()="
          + myObject.getJsonNumber("key9").toString());
      if (!JSONP_Util.assertEquals("" + Long.MAX_VALUE,
          myObject.getJsonNumber("key9").toString()))
        pass = false;
      LOGGER.info("Checking longValue of key10 for correctness");
      if (!JSONP_Util.assertEquals(Long.MIN_VALUE,
          myObject.getJsonNumber("key10").longValue()))
        pass = false;
      LOGGER.info("LongMin via JsonNumber.toString()="
          + myObject.getJsonNumber("key10").toString());
      if (!JSONP_Util.assertEquals("" + Long.MIN_VALUE,
          myObject.getJsonNumber("key10").toString()))
        pass = false;
      LOGGER.info("Checking intValue of key11 for correctness");
      if (!JSONP_Util.assertEquals(Integer.MAX_VALUE,
          myObject.getJsonNumber("key11").intValue()))
        pass = false;
      LOGGER.info("IntMax via JsonNumber.toString()="
          + myObject.getJsonNumber("key11").toString());
      if (!JSONP_Util.assertEquals("" + Integer.MAX_VALUE,
          myObject.getJsonNumber("key11").toString()))
        pass = false;
      LOGGER.info("Checking intValue of key12 for correctness");
      if (!JSONP_Util.assertEquals(Integer.MIN_VALUE,
          myObject.getJsonNumber("key12").intValue()))
        pass = false;
      LOGGER.info("IntMin via JsonNumber.toString()="
          + myObject.getJsonNumber("key12").toString());
      if (!JSONP_Util.assertEquals("" + Integer.MIN_VALUE,
          myObject.getJsonNumber("key12").toString()))
        pass = false;
      LOGGER.info("Checking doubleValue of key13 for correctness");
      if (!JSONP_Util.assertEquals(Double.MAX_VALUE,
          myObject.getJsonNumber("key13").doubleValue()))
        pass = false;
      LOGGER.info("Checking doubleValue of key14 for correctness");
      if (!JSONP_Util.assertEquals(Double.MIN_VALUE,
          myObject.getJsonNumber("key14").doubleValue()))
        pass = false;
      LOGGER.info("Checking bigDecimalValue of key15 for correctness");
      if (!JSONP_Util.assertEquals(BigDecimal.valueOf(123456789.123456789),
          myObject.getJsonNumber("key15").bigDecimalValue()))
        pass = false;
      LOGGER.info("Checking bigIntegerValue of key16 for correctness");
      if (!JSONP_Util.assertEquals(new BigInteger("123456789"),
          myObject.getJsonNumber("key16").bigIntegerValue()))
        pass = false;
      LOGGER.info("Checking getBoolean of key17 for correctness");
      if (!JSONP_Util.assertEquals(true, myObject.getBoolean("key17")))
        pass = false;
      LOGGER.info("Checking getBoolean of key18 for correctness");
      if (!JSONP_Util.assertEquals(false, myObject.getBoolean("key18")))
        pass = false;
      LOGGER.info("Checking isNull of key19 for correctness");
      if (!JSONP_Util.assertEquals(true, myObject.isNull("key19")))
        pass = false;
      LOGGER.info("Checking getJsonString of key20 for correctness");
      if (!JSONP_Util.assertEquals(JSONP_Data.asciiCharacters,
          myObject.getJsonString("key20").getString()))
        pass = false;
      LOGGER.info("Checking getString of key20 for correctness");
      if (!JSONP_Util.assertEquals(JSONP_Data.asciiCharacters,
          myObject.getString("key20")))
        pass = false;
      LOGGER.info("Checking getBoolean of key21 for correctness");
      if (!JSONP_Util.assertEquals(false, myObject.getBoolean("key21")))
        pass = false;
      LOGGER.info("Checking getBoolean of key22 for correctness");
      if (!JSONP_Util.assertEquals(true, myObject.getBoolean("key22")))
        pass = false;
      LOGGER.info("Checking isNull of key23 for correctness");
      if (!JSONP_Util.assertEquals(true, myObject.isNull("key23")))
        pass = false;
      LOGGER.info("Checking getJsonObject of key24 for correctness");
      if (!JSONP_Util.assertEqualsJsonObjects(object,
          myObject.getJsonObject("key24")))
        pass = false;
      LOGGER.info("Checking getJsonArray of key25 for correctness");
      if (!JSONP_Util.assertEqualsJsonArrays(array,
          myObject.getJsonArray("key25")))
        pass = false;

      // Verify calls to JsonObject.getBoolean(int)
      if (!JSONP_Util.assertEquals(true, myObject.getBoolean("key17")))
        pass = false;
      if (!JSONP_Util.assertEquals(false, myObject.getBoolean("key18")))
        pass = false;

      // Verify calls to JsonObject.getBoolean(String, boolean)
      LOGGER.info(
          "Testing JsonObject.getBoolean(String, boolean) with/without default value setting.");
      if (!JSONP_Util.assertEquals(true, myObject.getBoolean("key17", false)))
        pass = false;
      if (!JSONP_Util.assertEquals(false, myObject.getBoolean("key18", true)))
        pass = false;
      if (!JSONP_Util.assertEquals(true, myObject.getBoolean("key0", true)))
        pass = false;
      if (!JSONP_Util.assertEquals(true, myObject.getBoolean("key19", true)))
        pass = false;
      if (!JSONP_Util.assertEquals(true, myObject.getBoolean("key20", true)))
        pass = false;
      if (!JSONP_Util.assertEquals(true, myObject.getBoolean("key24", true)))
        pass = false;
      if (!JSONP_Util.assertEquals(true, myObject.getBoolean("key25", true)))
        pass = false;

      // Verify calls to JsonObject.getInt(String, int)
      LOGGER.info(
          "Testing JsonObject.getInt(String, int) with/without default value setting.");
      if (!JSONP_Util.assertEquals(-1, myObject.getInt("key0", 10)))
        pass = false;
      if (!JSONP_Util.assertEquals(10, myObject.getInt("key18", 10)))
        pass = false;
      if (!JSONP_Util.assertEquals(10, myObject.getInt("key19", 10)))
        pass = false;
      if (!JSONP_Util.assertEquals(10, myObject.getInt("key20", 10)))
        pass = false;
      if (!JSONP_Util.assertEquals(10, myObject.getInt("key24", 10)))
        pass = false;
      if (!JSONP_Util.assertEquals(10, myObject.getInt("key25", 10)))
        pass = false;

      // Verify calls to JsonObject.getString(String, String)
      LOGGER.info(
          "Testing JsonObject.getString(String, String) with/without default value setting.");
      if (!JSONP_Util.assertEquals(JSONP_Data.asciiCharacters,
          myObject.getString("key20", "foo")))
        pass = false;
      if (!JSONP_Util.assertEquals("foo", myObject.getString("key0", "foo")))
        pass = false;
      if (!JSONP_Util.assertEquals("foo", myObject.getString("key18", "foo")))
        pass = false;
      if (!JSONP_Util.assertEquals("foo", myObject.getString("key19", "foo")))
        pass = false;
      if (!JSONP_Util.assertEquals("foo", myObject.getString("key24", "foo")))
        pass = false;
      if (!JSONP_Util.assertEquals("foo", myObject.getString("key25", "foo")))
        pass = false;

    } catch (Exception e) {
      fail("jsonObjectTest3 Failed: ", e);
    }
    assertTrue(pass, "jsonObjectTest3 Failed");
  }

  /*
   * @testName: jsonObjectTest4
   * 
   * @assertion_ids: JSONP:JAVADOC:61; JSONP:JAVADOC:70; JSONP:JAVADOC:58;
   * JSONP:JAVADOC:400; JSONP:JAVADOC:401; JSONP:JAVADOC:403; JSONP:JAVADOC:404;
   * JSONP:JAVADOC:406; JSONP:JAVADOC:408; JSONP:JAVADOC:409; JSONP:JAVADOC:438;
   * 
   * @test_Strategy: Build a JsonObject and than write the JsonObject. Compare
   * the Json text from the writer contents with the expected Json text output
   * expected based on the JsonObject.
   */
  @Test
  public void jsonObjectTest4() {
    try {
      LOGGER.info("Create sample JsonObject for testing");
      JsonObject myJsonObject1 = JSONP_Util.createSampleJsonObject();
      LOGGER.info("Write the JsonObject 'myJsonObject1' out to a JsonWriter");
      StringWriter sw = new StringWriter();
      try (JsonWriter writer = Json.createWriter(sw)) {
        writer.writeObject(myJsonObject1);
        LOGGER.info("Close JsonWriter");
      }
      LOGGER.info("Save contents of the JsonWriter as a String");
      String contents = sw.toString();
      LOGGER.info("Dump contents of JsonWriter as a String");
      LOGGER.info("JsonWriterContents=" + contents);
      LOGGER.info("Remove whitespace from contents.");
      String actJsonText = JSONP_Util.removeWhitespace(contents);
      LOGGER.info(
          "Compare expected JsonObject text with actual JsonObject text for equality");
      assertTrue(
          JSONP_Util.assertEqualsJsonText(JSONP_Util.EXPECTED_SAMPLEJSONOBJECT_TEXT, actJsonText),
          "jsonObjectTest4 Failed");
    } catch (Exception e) {
      fail("jsonObjectTest4 Failed: ", e);
    }
  }

  /*
   * @testName: jsonObjectExceptionTests
   * 
   * @assertion_ids: JSONP:JAVADOC:43; JSONP:JAVADOC:47; JSONP:JAVADOC:50;
   * JSONP:JAVADOC:344; JSONP:JAVADOC:345; JSONP:JAVADOC:79; JSONP:JAVADOC:437;
   * JSONP:JAVADOC:440; JSONP:JAVADOC:442; JSONP:JAVADOC:528; JSONP:JAVADOC:530;
   * JSONP:JAVADOC:532; JSONP:JAVADOC:534; JSONP:JAVADOC:540;
   * 
   * @test_Strategy: Test JSON exception conditions. Trips the exceptions:
   * java.lang.ArithmeticException java.lang.ClassCastException
   * java.lang.NumberFormatException java.lang.UnsupportedOperationException
   * java.lang.NullPointerException
   */
  @Test
  public void jsonObjectExceptionTests() {
    boolean pass = true;
    JsonObject testObject = null;
    JsonArray testArray = null;

    try {
      LOGGER.info("Create sample JsonObject for testing");
      testObject = JSONP_Util.createSampleJsonObject();

      LOGGER.info("Create sample JsonArray for testing");
      testArray = JSONP_Util.createSampleJsonArray();
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a JsonObject to JsonNumber via getJsonNumber(String)");
      JsonNumber value = testObject.getJsonNumber("address");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a JsonObject to JsonString via getJsonString(String)");
      JsonString value = testObject.getJsonString("address");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a JsonObject to JsonArray via getJsonArray(String)");
      JsonArray value = testObject.getJsonArray("address");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a JsonArray to JsonNumber via getNumber(String)");
      JsonNumber value = testObject.getJsonNumber("phoneNumber");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a JsonArray to JsonString via getJsonString(String)");
      JsonString value = testObject.getJsonString("phoneNumber");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a JsonObject to String via getString(String)");
      String value = testObject.getString("address");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a JsonArray to String via getString(String)");
      String value = testObject.getString("phoneNumber");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a JsonObject to int via getInt(String)");
      int value = testObject.getInt("address");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a JsonArray to int via getInt(String)");
      int value = testObject.getInt("phoneNumber");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a JsonArray to JsonObject via getJsonObject(String)");
      JsonObject value = testObject.getJsonObject("phoneNumber");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a JsonNumber to JsonString via getJsonString(String)");
      JsonString value = testObject.getJsonString("age");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a JsonNumber to JsonObject via getJsonNumber(String)");
      JsonObject value = testObject.getJsonObject("age");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a JsonNumber to JsonArray via getJsonArray(String)");
      JsonArray value = testObject.getJsonArray("age");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a JsonString to JsonNumber via getJsonNumber(String)");
      JsonNumber value = testObject.getJsonNumber("firstName");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a JsonString to int via getInt(String)");
      int value = testObject.getInt("firstName");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a JsonString to JsonObject via getJsonString(String)");
      JsonObject value = testObject.getJsonObject("firstName");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a JsonString to JsonArray via getJsonArray(String)");
      JsonArray value = testObject.getJsonArray("firstName");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a JsonValue.FALSE to JsonNumber via getJsonNumber(String)");
      JsonNumber value = testObject.getJsonNumber("elderly");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a JsonValue.FALSE to JsonString via getJsonString(String)");
      JsonString value = testObject.getJsonString("elderly");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a JsonValue.FALSE to JsonObject via getJsonObject(String)");
      JsonObject value = testObject.getJsonObject("elderly");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a JsonValue.FALSE to JsonArray via getJsonArray(String)");
      JsonArray value = testObject.getJsonArray("elderly");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a non JsonValue.FALSE|JsonValue.TRUE to boolean via getBoolean(String)");
      boolean value = testObject.getBoolean("firstName");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a non JsonValue.FALSE|JsonValue.TRUE to boolean via getBoolean(String)");
      boolean value = testObject.getBoolean("age");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a non JsonValue.FALSE|JsonValue.TRUE to boolean via getBoolean(String)");
      boolean value = testObject.getBoolean("objectOfFooBar");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip ClassCastException
    try {
      LOGGER.info(
          "Trip ClassCastException trying to cast a non JsonValue.FALSE|JsonValue.TRUE to boolean via getBoolean(String)");
      boolean value = testObject.getBoolean("arrayOfFooBar");
      pass = false;
      LOGGER.warning("Failed to throw ClassCastException");
    } catch (ClassCastException e) {
      LOGGER.info("Got expected ClassCastException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Testing NumberFormatException calling add(String, Double.NaN)
    try {
      LOGGER.info("Trip NumberFormatException calling add(String, Double.NaN)");
      JsonObject object = Json.createObjectBuilder().add("double", Double.NaN)
          .build();
      pass = false;
      LOGGER.warning("Failed to throw NumberFormatException");
    } catch (NumberFormatException e) {
      LOGGER.info("Got expected NumberFormatException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Testing NumberFormatException calling add(String,
    // Double.NEGATIVE_INFINITY)
    try {
      LOGGER.info(
          "Trip NumberFormatException calling add(String, Double.NEGATIVE_INFINITY)");
      JsonObject object = Json.createObjectBuilder()
          .add("double", Double.NEGATIVE_INFINITY).build();
      pass = false;
      LOGGER.warning("Failed to throw NumberFormatException");
    } catch (NumberFormatException e) {
      LOGGER.info("Got expected NumberFormatException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Testing NumberFormatException calling add(String,
    // Double.POSITIVE_INFINITY)
    try {
      LOGGER.info(
          "Trip NumberFormatException calling add(String, Double.POSITIVE_INFINITY)");
      JsonObject object = Json.createObjectBuilder()
          .add("double", Double.POSITIVE_INFINITY).build();
      pass = false;
      LOGGER.warning("Failed to throw NumberFormatException");
    } catch (NumberFormatException e) {
      LOGGER.info("Got expected NumberFormatException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Test for ArithmeticException
    try {
      LOGGER.info(
          "Trip ArithmeticException calling add(\"number\", 12345.12345) and attempting to extract as an exact integer value");
      JsonObject object = Json.createObjectBuilder().add("number", 12345.12345)
          .build();
      LOGGER.info("Call JsonObject.getJsonNumber(\"number\").intValueExact()");
      int value = object.getJsonNumber("number").intValueExact();
      pass = false;
      LOGGER.warning("Failed to throw ArithmeticException");
    } catch (ArithmeticException e) {
      LOGGER.info("Got expected ArithmeticException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Test for ArithmeticException
    try {
      LOGGER.info(
          "Trip ArithmeticException calling add(\"number\", 12345.12345) and attempting to extract as an exact long value");
      JsonObject object = Json.createObjectBuilder().add("number", 12345.12345)
          .build();
      LOGGER.info("Call JsonObject.getJsonNumber(\"number\").longValueExact()");
      long value = object.getJsonNumber("number").longValueExact();
      pass = false;
      LOGGER.warning("Failed to throw ArithmeticException");
    } catch (ArithmeticException e) {
      LOGGER.info("Got expected ArithmeticException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Test for ArithmeticException
    try {
      LOGGER.info(
          "Trip ArithmeticException calling add(\"number\", 12345.12345) and attempting to extract as an exact biginteger value");
      JsonObject object = Json.createObjectBuilder().add("number", 12345.12345)
          .build();
      LOGGER.info(
          "Call JsonObject.getJsonNumber(\"number\").bigIntegerValueExact()");
      BigInteger value = object.getJsonNumber("number").bigIntegerValueExact();
      pass = false;
      LOGGER.warning("Failed to throw ArithmeticException");
    } catch (ArithmeticException e) {
      LOGGER.info("Got expected ArithmeticException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Tests for UnsupportedOperationException using Collection methods to
    // modify JsonObject Map

    // Trip UnsupportedOperationException
    try {
      LOGGER.info(
          "Trip UnsupportedOperationException JsonObject.put(K,V) trying to modify JsonObject map which should be immutable");
      testObject.put("foo", JsonValue.FALSE);
      pass = false;
      LOGGER.warning("Failed to throw UnsupportedOperationException");
    } catch (UnsupportedOperationException e) {
      LOGGER.info("Got expected UnsupportedOperationException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip UnsupportedOperationException
    try {
      LOGGER.info(
          "Trip UnsupportedOperationException JsonObject.putAll(Map) trying to modify JsonObject map which should be immutable");
      testObject.putAll(testObject);
      pass = false;
      LOGGER.warning("Failed to throw UnsupportedOperationException");
    } catch (UnsupportedOperationException e) {
      LOGGER.info("Got expected UnsupportedOperationException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip UnsupportedOperationException
    try {
      LOGGER.info(
          "Trip UnsupportedOperationException JsonObject.clear() trying to modify JsonObject map which should be immutable");
      testObject.clear();
      pass = false;
      LOGGER.warning("Failed to throw UnsupportedOperationException");
    } catch (UnsupportedOperationException e) {
      LOGGER.info("Got expected UnsupportedOperationException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip UnsupportedOperationException
    try {
      LOGGER.info(
          "Trip UnsupportedOperationException JsonObject.remove(K) trying to modify JsonObject map which should be immutable");
      testObject.remove("firstName");
      pass = false;
      LOGGER.warning("Failed to throw UnsupportedOperationException");
    } catch (UnsupportedOperationException e) {
      LOGGER.info("Got expected UnsupportedOperationException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip NullPointerException
    try {
      LOGGER.info(
          "Trip NullPointerException for JsonObject.getBoolean(String) when no mapping exists for name.");
      boolean value = testObject.getBoolean("foo");
      pass = false;
      LOGGER.warning("Failed to throw NullPointerException");
    } catch (NullPointerException e) {
      LOGGER.info("Got expected NullPointerException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip NullPointerException
    try {
      LOGGER.info(
          "Trip NullPointerException for JsonObject.getInt(String) when no mapping exists for name.");
      int value = testObject.getInt("foo");
      pass = false;
      LOGGER.warning("Failed to throw NullPointerException");
    } catch (NullPointerException e) {
      LOGGER.info("Got expected NullPointerException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip NullPointerException
    try {
      LOGGER.info(
          "Trip NullPointerException for JsonObject.getString(String) when no mapping exists for name.");
      String value = testObject.getString("foo");
      pass = false;
      LOGGER.warning("Failed to throw NullPointerException");
    } catch (NullPointerException e) {
      LOGGER.info("Got expected NullPointerException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip NullPointerException
    try {
      LOGGER.info(
          "Trip NullPointerException for JsonObject.isNull(String) when no mapping exists for name.");
      boolean value = testObject.isNull("foo");
      pass = false;
      LOGGER.warning("Failed to throw NullPointerException");
    } catch (NullPointerException e) {
      LOGGER.info("Got expected NullPointerException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    assertTrue(pass, "jsonObjectExceptionTests Failed");
  }

  /*
   * @testName: jsonObjectNullNameValueExceptionTests
   * 
   * @assertion_ids: JSONP:JAVADOC:561; JSONP:JAVADOC:562; JSONP:JAVADOC:563;
   * JSONP:JAVADOC:564; JSONP:JAVADOC:565; JSONP:JAVADOC:566; JSONP:JAVADOC:567;
   * JSONP:JAVADOC:568; JSONP:JAVADOC:569; JSONP:JAVADOC:570; JSONP:JAVADOC:571;
   * 
   * @test_Strategy: Test JSON NPE exception conditions when attempting to add a
   * specified name or value that is null.
   */
  @Test
  public void jsonObjectNullNameValueExceptionTests() {
    boolean pass = true;
    JsonObjectBuilder job = Json.createObjectBuilder();

    // Trip NullPointerException
    try {
      LOGGER.info(
          "Trip NullPointerException for JsonObjectBuilder.add(String, JsonValue) when name is null.");
      job.add(null, JsonValue.TRUE);
      pass = false;
      LOGGER.warning("Failed to throw NullPointerException");
    } catch (NullPointerException e) {
      LOGGER.info("Got expected NullPointerException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip NullPointerException
    try {
      LOGGER.info(
          "Trip NullPointerException for JsonObjectBuilder.add(String, JsonValue) when value is null.");
      job.add("name", (JsonValue) null);
      pass = false;
      LOGGER.warning("Failed to throw NullPointerException");
    } catch (NullPointerException e) {
      LOGGER.info("Got expected NullPointerException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip NullPointerException
    try {
      LOGGER.info(
          "Trip NullPointerException for JsonObjectBuilder.add(String, String) when name is null.");
      job.add(null, "value");
      pass = false;
      LOGGER.warning("Failed to throw NullPointerException");
    } catch (NullPointerException e) {
      LOGGER.info("Got expected NullPointerException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip NullPointerException
    try {
      LOGGER.info(
          "Trip NullPointerException for JsonObjectBuilder.add(String, String) when value is null.");
      job.add("name", (String) null);
      pass = false;
      LOGGER.warning("Failed to throw NullPointerException");
    } catch (NullPointerException e) {
      LOGGER.info("Got expected NullPointerException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip NullPointerException
    try {
      LOGGER.info(
          "Trip NullPointerException for JsonObjectBuilder.add(String, BigInteger) when name is null.");
      job.add(null, new BigInteger("123456789"));
      pass = false;
      LOGGER.warning("Failed to throw NullPointerException");
    } catch (NullPointerException e) {
      LOGGER.info("Got expected NullPointerException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip NullPointerException
    try {
      LOGGER.info(
          "Trip NullPointerException for JsonObjectBuilder.add(String, BigInteger) when value is null.");
      job.add("name", (BigInteger) null);
      pass = false;
      LOGGER.warning("Failed to throw NullPointerException");
    } catch (NullPointerException e) {
      LOGGER.info("Got expected NullPointerException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip NullPointerException
    try {
      LOGGER.info(
          "Trip NullPointerException for JsonObjectBuilder.add(String, BigDecimal) when name is null.");
      job.add(null, new BigDecimal("123456789"));
      pass = false;
      LOGGER.warning("Failed to throw NullPointerException");
    } catch (NullPointerException e) {
      LOGGER.info("Got expected NullPointerException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip NullPointerException
    try {
      LOGGER.info(
          "Trip NullPointerException for JsonObjectBuilder.add(String, BigDecimal) when value is null.");
      job.add("name", (BigDecimal) null);
      pass = false;
      LOGGER.warning("Failed to throw NullPointerException");
    } catch (NullPointerException e) {
      LOGGER.info("Got expected NullPointerException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip NullPointerException
    try {
      LOGGER.info(
          "Trip NullPointerException for JsonObjectBuilder.add(String, int) when name is null.");
      job.add(null, 123456789);
      pass = false;
      LOGGER.warning("Failed to throw NullPointerException");
    } catch (NullPointerException e) {
      LOGGER.info("Got expected NullPointerException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip NullPointerException
    try {
      LOGGER.info(
          "Trip NullPointerException for JsonObjectBuilder.add(String, long) when name is null.");
      job.add(null, 123456789L);
      pass = false;
      LOGGER.warning("Failed to throw NullPointerException");
    } catch (NullPointerException e) {
      LOGGER.info("Got expected NullPointerException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip NullPointerException
    try {
      LOGGER.info(
          "Trip NullPointerException for JsonObjectBuilder.add(String, double) when name is null.");
      job.add(null, 123456.789);
      pass = false;
      LOGGER.warning("Failed to throw NullPointerException");
    } catch (NullPointerException e) {
      LOGGER.info("Got expected NullPointerException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip NullPointerException
    try {
      LOGGER.info(
          "Trip NullPointerException for JsonObject.add(String, boolean) when name is null.");
      job.add(null, true);
      pass = false;
      LOGGER.warning("Failed to throw NullPointerException");
    } catch (NullPointerException e) {
      LOGGER.info("Got expected NullPointerException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip NullPointerException
    try {
      LOGGER.info(
          "Trip NullPointerException for JsonObject.addNull(String) when name is null.");
      job.addNull(null);
      pass = false;
      LOGGER.warning("Failed to throw NullPointerException");
    } catch (NullPointerException e) {
      LOGGER.info("Got expected NullPointerException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip NullPointerException
    try {
      LOGGER.info(
          "Trip NullPointerException for JsonObjectBuilder.add(String, JsonObjectBuilder) when name is null.");
      job.add(null, Json.createObjectBuilder());
      pass = false;
      LOGGER.warning("Failed to throw NullPointerException");
    } catch (NullPointerException e) {
      LOGGER.info("Got expected NullPointerException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip NullPointerException
    try {
      LOGGER.info(
          "Trip NullPointerException for JsonObjectBuilder.add(String, JsonObjectBuilder) when value is null.");
      job.add("name", (JsonObjectBuilder) null);
      pass = false;
      LOGGER.warning("Failed to throw NullPointerException");
    } catch (NullPointerException e) {
      LOGGER.info("Got expected NullPointerException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip NullPointerException
    try {
      LOGGER.info(
          "Trip NullPointerException for JsonArrayBuilder.add(String, JsonArrayBuilder) when name is null.");
      job.add(null, Json.createArrayBuilder());
      pass = false;
      LOGGER.warning("Failed to throw NullPointerException");
    } catch (NullPointerException e) {
      LOGGER.info("Got expected NullPointerException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    // Trip NullPointerException
    try {
      LOGGER.info(
          "Trip NullPointerException for JsonArrayBuilder.add(String, JsonArrayBuilder) when value is null.");
      job.add("name", (JsonArrayBuilder) null);
      pass = false;
      LOGGER.warning("Failed to throw NullPointerException");
    } catch (NullPointerException e) {
      LOGGER.info("Got expected NullPointerException");
    } catch (Exception e) {
      pass = false;
      LOGGER.warning("Caught unexpected exception: " + e);
    }

    assertTrue(pass, "jsonObjectNullNameValueExceptionTests Failed");
  }

  /*
   * @testName: jsonCreateObjectBuilder11Test
   * 
   * @assertion_ids: JSONP:JAVADOC:577; JSONP:JAVADOC:578; JSONP:JAVADOC:656;
   * JSONP:JAVADOC:657;
   *
   * @test_Strategy: Tests JsonObjectBuilder API factory methods added in JSON-P
   * 1.1.
   */
  @Test
  public void jsonCreateObjectBuilder11Test() {
    CreateObjectBuilder createTest = new CreateObjectBuilder();
    final TestResult result = createTest.test();
    result.eval();
  }

  /*
   * @testName: jsonObjectBuilder11Test
   * 
   * @assertion_ids: JSONP:JAVADOC:618; JSONP:JAVADOC:619;
   * 
   * @test_Strategy: Tests JsonObjectBuilder API methods added in JSON-P 1.1.
   */
  @Test
  public void jsonObjectBuilder11Test() {
    ObjectBuild buildTest = new ObjectBuild();
    final TestResult result = buildTest.test();
    result.eval();
  }

  /*
   * @testName: jsonObjectBuilderBuildTest
   *
   * @test_Strategy: Tests JsonObjectBuilder#build clears the builder.
   */
  @Test
  public void jsonObjectBuilderBuildTest() {
      JsonObjectBuilder builder = Json.createObjectBuilder().add("test", "value");
      JsonObject jsonObj = builder.build();
      assertEquals("\"value\"", jsonObj.get("test").toString());
      jsonObj = builder.build();
      assertNull(jsonObj.get("test"));
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy