1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-15 16:14:49 +02:00

Don't require a properties file

when running the integration tests.
This commit is contained in:
Florian Schmaus 2015-03-23 21:12:13 +01:00
parent f4d76fa85e
commit 7cefe63175

View file

@ -27,6 +27,7 @@ import java.util.Properties;
import java.util.Set; import java.util.Set;
import org.jivesoftware.smack.ConnectionConfiguration.SecurityMode; import org.jivesoftware.smack.ConnectionConfiguration.SecurityMode;
import org.jivesoftware.smack.util.Objects;
import org.jivesoftware.smack.util.StringUtils; import org.jivesoftware.smack.util.StringUtils;
import org.jxmpp.jid.DomainBareJid; import org.jxmpp.jid.DomainBareJid;
import org.jxmpp.jid.impl.JidCreate; import org.jxmpp.jid.impl.JidCreate;
@ -64,7 +65,8 @@ public class Configuration {
boolean debug, String accountOneUsername, String accountOnePassword, String accountTwoUsername, boolean debug, String accountOneUsername, String accountOnePassword, String accountTwoUsername,
String accountTwoPassword, Set<String> enabledTests, Set<String> disabledTests, String accountTwoPassword, Set<String> enabledTests, Set<String> disabledTests,
Set<String> testPackages) { Set<String> testPackages) {
this.service = service; this.service = Objects.requireNonNull(service,
"'service' must be set. Either via 'properties' files or via system property 'sinttest.service'.");
this.serviceTlsPin = serviceTlsPin; this.serviceTlsPin = serviceTlsPin;
this.securityMode = securityMode; this.securityMode = securityMode;
this.replyTimeout = replyTimeout; this.replyTimeout = replyTimeout;
@ -214,11 +216,13 @@ public class Configuration {
private static final String SINTTEST = "sinttest."; private static final String SINTTEST = "sinttest.";
public static Configuration newConfiguration() throws IOException { public static Configuration newConfiguration() throws IOException {
File propertiesFile = findPropertiesFile();
Properties properties = new Properties(); Properties properties = new Properties();
try (FileInputStream in = new FileInputStream(propertiesFile)) { File propertiesFile = findPropertiesFile();
properties.load(in); if (propertiesFile != null) {
try (FileInputStream in = new FileInputStream(propertiesFile)) {
properties.load(in);
}
} }
// Properties set via the system override the file properties // Properties set via the system override the file properties
@ -266,7 +270,7 @@ public class Configuration {
if (res.isFile()) if (res.isFile())
return res; return res;
} }
throw new IOException("Could not find properties file"); return null;
} }
private static Set<String> getTestSetFrom(String string) { private static Set<String> getTestSetFrom(String string) {