google-nomulus/javatests/google/registry/model/translators/StatusValueAdapterTest.java
cgoldfeder 053538b1b5 Turn Flow into an interface and inject all its fields
This concludes your flow flattening experience. Please
fill out a flow flattening satisfaction survey before
exiting.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=137903095
2016-11-02 15:19:34 -04:00

90 lines
3.7 KiB
Java

// Copyright 2016 The Nomulus Authors. All Rights Reserved.
//
// 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 google.registry.model.translators;
import static com.google.common.truth.Truth.assertThat;
import static java.nio.charset.StandardCharsets.UTF_8;
import com.google.common.collect.ImmutableMap;
import google.registry.flows.EppXmlTransformer;
import google.registry.model.eppcommon.StatusValue;
import google.registry.model.eppinput.EppInput;
import google.registry.model.eppinput.EppInput.ResourceCommandWrapper;
import google.registry.model.eppoutput.EppOutput;
import google.registry.model.eppoutput.EppResponse;
import google.registry.model.host.HostCommand;
import google.registry.model.host.HostResource;
import google.registry.testing.AppEngineRule;
import google.registry.testing.EppLoader;
import google.registry.xml.ValidationMode;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
@RunWith(JUnit4.class)
public class StatusValueAdapterTest {
// Needed to create HostResources.
@Rule
public AppEngineRule appEngine = new AppEngineRule.Builder()
.withDatastore()
.build();
@Test
public void testMarshalling() throws Exception {
// Mangle the status value through marshalling by stuffing it in a host info response and then
// ripping it out of the marshalled xml. Use lenient marshalling so we can omit other fields.
String marshalled = new String(
EppXmlTransformer.marshal(
EppOutput.create(new EppResponse.Builder()
.setResData(new HostResource.Builder()
.addStatusValue(StatusValue.CLIENT_UPDATE_PROHIBITED)
.build())
.build()),
ValidationMode.LENIENT),
UTF_8);
assertThat(marshalled.toString()).contains("<host:status s=\"clientUpdateProhibited\"/>");
}
private StatusValue unmarshal(String statusValueXml) throws Exception {
// Mangle the status value through unmarshalling by stuffing it in a simple host command and
// then ripping it out of the unmarshalled EPP object.
EppInput eppInput =
new EppLoader(this, "host_update.xml", ImmutableMap.of("STATUS", statusValueXml)).getEpp();
ResourceCommandWrapper wrapper =
(ResourceCommandWrapper) eppInput.getCommandWrapper().getCommand();
HostCommand.Update update = (HostCommand.Update) wrapper.getResourceCommand();
return update.getInnerAdd().getStatusValues().asList().get(0);
}
@Test
public void testNoOptionalFields_unmarshallsWithoutException() throws Exception {
assertThat(unmarshal("<host:status s=\"clientUpdateProhibited\"/>"))
.isEqualTo(StatusValue.CLIENT_UPDATE_PROHIBITED);
}
@Test
public void testHasLang_unmarshallsWithoutException() throws Exception {
assertThat(unmarshal("<host:status s=\"clientUpdateProhibited\" lang=\"fr\"/>"))
.isEqualTo(StatusValue.CLIENT_UPDATE_PROHIBITED);
}
@Test
public void testHasMessage_unmarshallsWithoutException() throws Exception {
assertThat(unmarshal("<host:status s=\"clientUpdateProhibited\">my message</host:status>"))
.isEqualTo(StatusValue.CLIENT_UPDATE_PROHIBITED);
}
}