blob: f18b781ff771046356c19ce8c92f9e7d4228bcb9 [file] [log] [blame]
/**
* 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.metron.stellar.common.utils;
import org.adrianwalker.multilinestring.Multiline;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import java.io.File;
import java.util.HashMap;
import java.util.Map;
import static org.hamcrest.CoreMatchers.equalTo;
import static org.hamcrest.MatcherAssert.assertThat;
public class JSONUtilsTest {
private static File tmpDir;
/**
{
"a" : "hello",
"b" : "world"
}
*/
@Multiline
private static String config;
private static File configFile;
@BeforeAll
public static void setUp() throws Exception {
tmpDir = UnitTestHelper.createTempDir(new File("target/jsonutilstest"));
configFile = UnitTestHelper.write(new File(tmpDir, "config.json"), config);
}
@Test
public void loads_file_with_typeref() throws Exception {
Map<String, Object> expected = new HashMap<String, Object>() {{
put("a", "hello");
put("b", "world");
}};
Map<String, Object> actual = JSONUtils.INSTANCE.load(configFile, JSONUtils.MAP_SUPPLIER);
assertThat("config not equal", actual, equalTo(expected));
}
@Test
@SuppressWarnings("unchecked")
public void loads_file_with_map_class() throws Exception {
Map<String, Object> expected = new HashMap<String, Object>() {{
put("a", "hello");
put("b", "world");
}};
Map<String, Object> actual = JSONUtils.INSTANCE.load(configFile, Map.class);
assertThat("config not equal", actual, equalTo(expected));
}
@Test
public void loads_file_with_custom_class() throws Exception {
TestConfig expected = new TestConfig().setA("hello").setB("world");
TestConfig actual = JSONUtils.INSTANCE.load(configFile, TestConfig.class);
assertThat("a not equal", actual.getA(), equalTo(expected.getA()));
assertThat("b not equal", actual.getB(), equalTo(expected.getB()));
}
public static class TestConfig {
private String a;
private String b;
public String getA() {
return a;
}
public TestConfig setA(String a) {
this.a = a;
return this;
}
public String getB() {
return b;
}
public TestConfig setB(String b) {
this.b = b;
return this;
}
}
}