123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- /* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
- #include <pthread.h>
- #include "ua_types.h"
- #include "ua_server.h"
- #include "ua_client.h"
- #include "ua_config_default.h"
- #include "ua_client_highlevel.h"
- #include "ua_network_tcp.h"
- #include "testing_clock.h"
- #include "check.h"
- UA_Server *server;
- UA_ServerConfig *config;
- UA_Boolean *running;
- pthread_t server_thread;
- static void * serverloop(void *_) {
- while(*running)
- UA_Server_run_iterate(server, true);
- return NULL;
- }
- static void setup(void) {
- running = UA_Boolean_new();
- *running = true;
- config = UA_ServerConfig_new_default();
- server = UA_Server_new(config);
- UA_Server_run_startup(server);
- pthread_create(&server_thread, NULL, serverloop, NULL);
- UA_realSleep(100);
- }
- static void teardown(void) {
- *running = false;
- pthread_join(server_thread, NULL);
- UA_Server_run_shutdown(server);
- UA_Boolean_delete(running);
- UA_Server_delete(server);
- UA_ServerConfig_delete(config);
- }
- START_TEST(SecureChannel_timeout_max) {
- UA_Client *client = UA_Client_new(UA_ClientConfig_default);
- UA_StatusCode retval = UA_Client_connect(client, "opc.tcp://localhost:4840");
- ck_assert_uint_eq(retval, UA_STATUSCODE_GOOD);
- UA_fakeSleep(UA_ClientConfig_default.secureChannelLifeTime);
- UA_Variant val;
- UA_NodeId nodeId = UA_NODEID_NUMERIC(0, UA_NS0ID_SERVER_SERVERSTATUS_STATE);
- retval = UA_Client_readValueAttribute(client, nodeId, &val);
- ck_assert_uint_eq(retval, UA_STATUSCODE_GOOD);
- UA_Variant_deleteMembers(&val);
- UA_Client_disconnect(client);
- UA_Client_delete(client);
- }
- END_TEST
- START_TEST(SecureChannel_timeout_fail) {
- UA_Client *client = UA_Client_new(UA_ClientConfig_default);
- UA_StatusCode retval = UA_Client_connect(client, "opc.tcp://localhost:4840");
- ck_assert_uint_eq(retval, UA_STATUSCODE_GOOD);
- UA_fakeSleep(UA_ClientConfig_default.secureChannelLifeTime+1);
- UA_Variant val;
- UA_Variant_init(&val);
- UA_NodeId nodeId = UA_NODEID_NUMERIC(0, UA_NS0ID_SERVER_SERVERSTATUS_STATE);
- retval = UA_Client_readValueAttribute(client, nodeId, &val);
- ck_assert(retval != UA_STATUSCODE_GOOD);
- UA_Variant_deleteMembers(&val);
- UA_Client_disconnect(client);
- UA_Client_delete(client);
- }
- END_TEST
- int main(void) {
- TCase *tc_sc = tcase_create("Client SecureChannel");
- tcase_add_checked_fixture(tc_sc, setup, teardown);
- tcase_add_test(tc_sc, SecureChannel_timeout_max);
- tcase_add_test(tc_sc, SecureChannel_timeout_fail);
- Suite *s = suite_create("Client");
- suite_add_tcase(s, tc_sc);
- SRunner *sr = srunner_create(s);
- srunner_set_fork_status(sr, CK_NOFORK);
- srunner_run_all(sr,CK_NORMAL);
- int number_failed = srunner_ntests_failed(sr);
- srunner_free(sr);
- return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
- }
|