-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add variableTypes before objects, consider ParentNodeId for parent re…
…ferences
- Loading branch information
1 parent
a4a7ce0
commit 3760a45
Showing
5 changed files
with
141 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
/* 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 "check.h" | ||
#include <NodesetLoader/backendOpen62541.h> | ||
#include <NodesetLoader/dataTypes.h> | ||
#include <open62541/server.h> | ||
#include <open62541/server_config_default.h> | ||
#include <open62541/types.h> | ||
|
||
#include "testHelper.h" | ||
|
||
UA_Server *server; | ||
char *nodesetPath = NULL; | ||
|
||
static void setup(void) | ||
{ | ||
printf("path to testnodesets %s\n", nodesetPath); | ||
server = UA_Server_new(); | ||
UA_ServerConfig *config = UA_Server_getConfig(server); | ||
UA_ServerConfig_setDefault(config); | ||
} | ||
|
||
static void teardown(void) | ||
{ | ||
UA_Server_run_shutdown(server); | ||
#ifdef USE_CLEANUP_CUSTOM_DATATYPES | ||
const UA_DataTypeArray *customTypes = | ||
UA_Server_getConfig(server)->customDataTypes; | ||
#endif | ||
UA_Server_delete(server); | ||
#ifdef USE_CLEANUP_CUSTOM_DATATYPES | ||
NodesetLoader_cleanupCustomDataTypes(customTypes); | ||
#endif | ||
} | ||
|
||
START_TEST(Server_Issue_201) | ||
{ | ||
ck_assert(NodesetLoader_loadFile(server, nodesetPath, NULL)); | ||
|
||
ck_assert(hasReference( | ||
server, UA_NODEID_NUMERIC(2, 5000), UA_NODEID_NUMERIC(2, 4000), | ||
UA_NODEID_NUMERIC(0, UA_NS0ID_HASCOMPONENT), UA_BROWSEDIRECTION_INVERSE)); | ||
|
||
ck_assert(hasReference(server, UA_NODEID_NUMERIC(2, 6000), | ||
UA_NODEID_NUMERIC(2, 4000), | ||
UA_NODEID_NUMERIC(0, UA_NS0ID_HASCOMPONENT), | ||
UA_BROWSEDIRECTION_INVERSE)); | ||
} | ||
END_TEST | ||
|
||
static Suite *testSuite_Client(void) | ||
{ | ||
Suite *s = suite_create("server nodeset import"); | ||
TCase *tc_server = tcase_create("server nodeset import"); | ||
tcase_add_unchecked_fixture(tc_server, setup, teardown); | ||
tcase_add_test(tc_server, Server_Issue_201); | ||
suite_add_tcase(s, tc_server); | ||
return s; | ||
} | ||
|
||
int main(int argc, char *argv[]) | ||
{ | ||
printf("%s", argv[0]); | ||
if (!(argc > 1)) | ||
return 1; | ||
nodesetPath = argv[1]; | ||
Suite *s = testSuite_Client(); | ||
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<UANodeSet xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:uax="http://opcfoundation.org/UA/2008/02/Types.xsd" xmlns="http://opcfoundation.org/UA/2011/03/UANodeSet.xsd" xmlns:s1="http://yourorganisation.org/TestProjectsOpen/Types.xsd" xmlns:ua="http://unifiedautomation.com/Configuration/NodeSet.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||
<NamespaceUris> | ||
<Uri>http://open62541.com/tests/issue_201/</Uri> | ||
</NamespaceUris> | ||
<Aliases> | ||
<Alias Alias="Double">i=11</Alias> | ||
<Alias Alias="String">i=12</Alias> | ||
<Alias Alias="ByteString">i=15</Alias> | ||
<Alias Alias="Organizes">i=35</Alias> | ||
<Alias Alias="HasModellingRule">i=37</Alias> | ||
<Alias Alias="HasEncoding">i=38</Alias> | ||
<Alias Alias="HasDescription">i=39</Alias> | ||
<Alias Alias="HasTypeDefinition">i=40</Alias> | ||
<Alias Alias="HasSubtype">i=45</Alias> | ||
<Alias Alias="HasProperty">i=46</Alias> | ||
<Alias Alias="HasComponent">i=47</Alias> | ||
<Alias Alias="Point">ns=1;i=3002</Alias> | ||
</Aliases> | ||
<UAObject NodeId="ns=1;i=4000" BrowseName="1:Parent"> | ||
<DisplayName>Parent</DisplayName> | ||
<References> | ||
<Reference ReferenceType="HasComponent" IsForward="false">i=85</Reference> | ||
<Reference ReferenceType="HasComponent" IsForward="true">ns=1;i=5000</Reference> | ||
</References> | ||
</UAObject> | ||
<UAObject NodeId="ns=1;i=5000" BrowseName="1:Child" ParentNodeId="ns=1;i=4000"> | ||
<DisplayName>Child</DisplayName> | ||
<References> | ||
<!--hierachical ref, but not to parent--> | ||
<Reference ReferenceType="HasComponent" IsForward="true">ns=1;i=6000</Reference> | ||
</References> | ||
</UAObject> | ||
<UAObject NodeId="ns=1;i=6000" BrowseName="1:Child2"> | ||
<DisplayName>Child2</DisplayName> | ||
<References> | ||
<Reference ReferenceType="HasComponent" IsForward="false">ns=1;i=4000</Reference> | ||
</References> | ||
</UAObject> | ||
</UANodeSet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters