summaryrefslogtreecommitdiffstats
path: root/libccnx-transport-rta/ccnx/api/control/test/test_cpi_InterfaceGeneric.c
diff options
context:
space:
mode:
Diffstat (limited to 'libccnx-transport-rta/ccnx/api/control/test/test_cpi_InterfaceGeneric.c')
-rw-r--r--libccnx-transport-rta/ccnx/api/control/test/test_cpi_InterfaceGeneric.c157
1 files changed, 157 insertions, 0 deletions
diff --git a/libccnx-transport-rta/ccnx/api/control/test/test_cpi_InterfaceGeneric.c b/libccnx-transport-rta/ccnx/api/control/test/test_cpi_InterfaceGeneric.c
new file mode 100644
index 00000000..d427bb78
--- /dev/null
+++ b/libccnx-transport-rta/ccnx/api/control/test/test_cpi_InterfaceGeneric.c
@@ -0,0 +1,157 @@
+/*
+ * Copyright (c) 2017 Cisco and/or its affiliates.
+ * 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.
+ */
+
+
+#include "../cpi_InterfaceGeneric.c"
+#include <LongBow/unit-test.h>
+#include <parc/algol/parc_SafeMemory.h>
+
+
+LONGBOW_TEST_RUNNER(cpi_InterfaceGeneric)
+{
+ // The following Test Fixtures will run their corresponding Test Cases.
+ // Test Fixtures are run in the order specified, but all tests should be idempotent.
+ // Never rely on the execution order of tests or share state between them.
+ LONGBOW_RUN_TEST_FIXTURE(Global);
+}
+
+// The Test Runner calls this function once before any Test Fixtures are run.
+LONGBOW_TEST_RUNNER_SETUP(cpi_InterfaceGeneric)
+{
+ return LONGBOW_STATUS_SUCCEEDED;
+}
+
+// The Test Runner calls this function once after all the Test Fixtures are run.
+LONGBOW_TEST_RUNNER_TEARDOWN(cpi_InterfaceGeneric)
+{
+ return LONGBOW_STATUS_SUCCEEDED;
+}
+
+LONGBOW_TEST_FIXTURE(Global)
+{
+ LONGBOW_RUN_TEST_CASE(Global, cpiInterfaceGeneric_Copy);
+ LONGBOW_RUN_TEST_CASE(Global, cpiInterfaceGeneric_Create_Destroy);
+ LONGBOW_RUN_TEST_CASE(Global, cpiInterfaceGeneric_GetAddresses);
+ LONGBOW_RUN_TEST_CASE(Global, cpiInterfaceGeneric_GetIndex);
+ LONGBOW_RUN_TEST_CASE(Global, cpiInterfaceGeneric_GetState);
+ LONGBOW_RUN_TEST_CASE(Global, cpiInterfaceGeneric_BuildString);
+}
+
+LONGBOW_TEST_FIXTURE_SETUP(Global)
+{
+ return LONGBOW_STATUS_SUCCEEDED;
+}
+
+LONGBOW_TEST_FIXTURE_TEARDOWN(Global)
+{
+ uint32_t outstandingAllocations = parcSafeMemory_ReportAllocation(STDERR_FILENO);
+ if (outstandingAllocations != 0) {
+ printf("%s leaks memory by %d allocations\n", longBowTestCase_GetName(testCase), outstandingAllocations);
+ return LONGBOW_STATUS_MEMORYLEAK;
+ }
+
+ return LONGBOW_STATUS_SUCCEEDED;
+}
+
+LONGBOW_TEST_CASE(Global, cpiInterfaceGeneric_Copy)
+{
+ CPIAddress *addr = cpiAddress_CreateFromInterface(5);
+ CPIAddressList *list = cpiAddressList_Append(cpiAddressList_Create(), addr);
+ CPIInterfaceGeneric *Generic = cpiInterfaceGeneric_Create(1, list);
+
+ CPIInterfaceGeneric *copy = cpiInterfaceGeneric_Copy(Generic);
+
+ assertTrue(copy->ifidx == Generic->ifidx, "ifidx did not match, expected %u got %u", Generic->ifidx, copy->ifidx);
+ assertTrue(copy->state == Generic->state, "states did not match, expected %d got %d", Generic->state, copy->state);
+ assertTrue(cpiAddressList_Equals(copy->addresses, Generic->addresses), "did not get same addresses");
+
+ cpiInterfaceGeneric_Destroy(&copy);
+ cpiInterfaceGeneric_Destroy(&Generic);
+}
+
+LONGBOW_TEST_CASE(Global, cpiInterfaceGeneric_Create_Destroy)
+{
+ CPIInterfaceGeneric *Generic = cpiInterfaceGeneric_Create(1, cpiAddressList_Create());
+ cpiInterfaceGeneric_Destroy(&Generic);
+
+ assertTrue(parcMemory_Outstanding() == 0, "Imbalance after destroying");
+}
+
+LONGBOW_TEST_CASE(Global, cpiInterfaceGeneric_GetAddresses)
+{
+ CPIAddress *addr = cpiAddress_CreateFromInterface(5);
+ CPIAddressList *list = cpiAddressList_Append(cpiAddressList_Create(), addr);
+ CPIInterfaceGeneric *Generic = cpiInterfaceGeneric_Create(1, list);
+
+ const CPIAddressList *test = cpiInterfaceGeneric_GetAddresses(Generic);
+ assertTrue(cpiAddressList_Equals(list, test), "Address lists did not match");
+
+ cpiInterfaceGeneric_Destroy(&Generic);
+}
+
+LONGBOW_TEST_CASE(Global, cpiInterfaceGeneric_GetIndex)
+{
+ CPIAddress *addr = cpiAddress_CreateFromInterface(5);
+ CPIAddressList *list = cpiAddressList_Append(cpiAddressList_Create(), addr);
+ CPIInterfaceGeneric *Generic = cpiInterfaceGeneric_Create(1, list);
+
+ assertTrue(cpiInterfaceGeneric_GetIndex(Generic) == 1, "ifidx did not match");
+
+ cpiInterfaceGeneric_Destroy(&Generic);
+}
+
+LONGBOW_TEST_CASE(Global, cpiInterfaceGeneric_GetState)
+{
+ CPIAddress *addr = cpiAddress_CreateFromInterface(5);
+ CPIAddressList *list = cpiAddressList_Append(cpiAddressList_Create(), addr);
+ CPIInterfaceGeneric *Generic = cpiInterfaceGeneric_Create(1, list);
+
+ assertTrue(cpiInterfaceGeneric_GetState(Generic) == CPI_IFACE_UNKNOWN, "state did not match");
+
+ cpiInterfaceGeneric_SetState(Generic, CPI_IFACE_UP);
+ assertTrue(cpiInterfaceGeneric_GetState(Generic) == CPI_IFACE_UP, "state did not match");
+
+ cpiInterfaceGeneric_SetState(Generic, CPI_IFACE_DOWN);
+ assertTrue(cpiInterfaceGeneric_GetState(Generic) == CPI_IFACE_DOWN, "state did not match");
+
+ cpiInterfaceGeneric_Destroy(&Generic);
+}
+
+LONGBOW_TEST_CASE(Global, cpiInterfaceGeneric_BuildString)
+{
+ CPIAddressList *addrs = cpiAddressList_Create();
+ cpiAddressList_Append(addrs, cpiAddress_CreateFromInterface(1));
+ cpiAddressList_Append(addrs, cpiAddress_CreateFromInterface(2));
+
+ CPIInterfaceGeneric *generic = cpiInterfaceGeneric_Create(1, addrs);
+
+ uint32_t beforeBalance = parcMemory_Outstanding();
+ PARCBufferComposer *composer = cpiInterfaceGeneric_BuildString(generic, parcBufferComposer_Create());
+ parcBufferComposer_Release(&composer);
+ uint32_t afterBalance = parcMemory_Outstanding();
+
+ cpiInterfaceGeneric_Destroy(&generic);
+
+ assertTrue(beforeBalance == afterBalance, "Memory leak in BuildString: %d", (int) (afterBalance - beforeBalance));
+}
+
+int
+main(int argc, char *argv[])
+{
+ LongBowRunner *testRunner = LONGBOW_TEST_RUNNER_CREATE(cpi_InterfaceGeneric);
+ int exitStatus = longBowMain(argc, argv, testRunner, NULL);
+ longBowTestRunner_Destroy(&testRunner);
+ exit(exitStatus);
+}