/** * Licensed 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 io.airlift.airship.agent; import com.google.common.base.Charsets; import com.google.common.collect.ImmutableMap; import com.google.common.io.Resources; import io.airlift.airship.shared.AssignmentRepresentation; import io.airlift.airship.shared.InstallationRepresentation; import io.airlift.json.JsonCodec; import org.testng.annotations.Test; import static io.airlift.airship.shared.AssignmentHelper.APPLE_ASSIGNMENT; import static io.airlift.json.JsonCodec.jsonCodec; import static org.testng.Assert.assertEquals; public class TestInstallationRepresentation { private final JsonCodec<InstallationRepresentation> codec = jsonCodec(InstallationRepresentation.class); private final InstallationRepresentation expected = new InstallationRepresentation( "apple", AssignmentRepresentation.from(APPLE_ASSIGNMENT), "fetch://binary.tar.gz", "fetch://config.config", ImmutableMap.of("memory", 512) ); @Test public void testJsonRoundTrip() { String json = codec.toJson(expected); InstallationRepresentation actual = codec.fromJson(json); assertEquals(actual, expected); } @Test public void testJsonDecode() throws Exception { String json = Resources.toString(Resources.getResource("installation.json"), Charsets.UTF_8); InstallationRepresentation actual = codec.fromJson(json); assertEquals(actual, expected); } }