blob: 5edfd98a337c132b69c3060c3de7b993f96f284b [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.plc4x.java.opcua.connection;
import static org.apache.plc4x.java.opcua.OpcuaPlcDriver.URI_PATTERN;
import static org.apache.plc4x.java.opcua.UtilsTest.assertMatching;
import static org.apache.plc4x.java.opcua.UtilsTest.assertNoMatching;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import java.net.InetAddress;
import java.net.UnknownHostException;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.fail;
/**
*/
public class OpcuaTcpPlcConnectionTest {
private final String[] validTCPOPC = {
"localhost",
"127.0.0.1",
"254.254.254.254"
};
private final int[] validPorts = {
1337,
42,
1,
24152
};
private final String[] nDiscoveryParams = {
"discovery=false"
};
@BeforeEach
public void before() {
}
@AfterEach
public void after() {
}
@Test
public void testConectionStringPattern() {
for (String address : validTCPOPC) {
assertMatching(URI_PATTERN, "opcua:tcp://127.0.0.1:555?discovery=true");
assertMatching(URI_PATTERN, "opcua:tcp://127.0.0.1:555?discovery=True");
assertMatching(URI_PATTERN, "opcua:tcp://127.0.0.1:555?discovery=TRUE");
assertMatching(URI_PATTERN, "opcua:tcp://127.0.0.1:555?Discovery=True");
//No Port Specified
assertMatching(URI_PATTERN, "opcua:tcp://127.0.0.1?discovery=True");
//No Transport Specified
assertMatching(URI_PATTERN, "opcua://127.0.0.1:647?discovery=True");
//No Params Specified
assertMatching(URI_PATTERN, "opcua:tcp://127.0.0.1:111");
//No Transport and Params Specified
assertMatching(URI_PATTERN, "opcua://127.0.0.1:754");
}
}
}