org.assertj.swing.junit.ant.EnvironmentXmlNodeWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of assertj-swing-junit Show documentation
Show all versions of assertj-swing-junit Show documentation
JUnit-specific extension for AssertJ-Swing
/**
* 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.
*
* Copyright 2012-2015 the original author or authors.
*/
package org.assertj.swing.junit.ant;
import static org.apache.tools.ant.taskdefs.optional.junit.XMLConstants.HOSTNAME;
import static org.apache.tools.ant.taskdefs.optional.junit.XMLConstants.TIMESTAMP;
import static org.assertj.swing.junit.xml.XmlAttribute.name;
import java.net.UnknownHostException;
import java.util.Date;
import org.assertj.swing.junit.xml.XmlNode;
/**
* Understands how to write environment-related properties to a XML node.
*
* @author Alex Ruiz
*/
class EnvironmentXmlNodeWriter {
private static final String LOCALHOST = "localhost";
private final TimestampFormatter timestampFormatter;
private final HostNameReader hostNameReader;
EnvironmentXmlNodeWriter() {
this(new TimestampFormatter(), new HostNameReader());
}
EnvironmentXmlNodeWriter(TimestampFormatter timestampFormatter, HostNameReader hostNameReader) {
this.timestampFormatter = timestampFormatter;
this.hostNameReader = hostNameReader;
}
EnvironmentXmlNodeWriter writeTimestamp(XmlNode target) {
target.addAttribute(name(TIMESTAMP).value(timestampFormatter.format(new Date())));
return this;
}
EnvironmentXmlNodeWriter writeHostName(XmlNode target) {
String hostName = null;
try {
hostName = hostNameReader.localHostName();
} catch (UnknownHostException e) {
hostName = LOCALHOST;
}
target.addAttribute(name(HOSTNAME).value(hostName));
return this;
}
}