/* * 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 the file(s) containing the functions to be tested. // This permits internal static functions to be visible to this Test Framework. #include "../cpi_ControlFacade.c" #include #include #include typedef struct test_data { char *jsonstring; PARCJSON *json; } TestData; static TestData * _commonSetup(void) { TestData *data = parcMemory_AllocateAndClear(sizeof(TestData)); assertNotNull(data, "parcMemory_AllocateAndClear(%zu) returned NULL", sizeof(TestData)); data->jsonstring = parcMemory_StringDuplicate("{ \"EMPTY\": \"NESS\" }", 100); data->json = parcJSON_ParseString(data->jsonstring); assertNotNull(data->json, "got null JSON from string: %s", data->jsonstring); return data; } static void _commonTeardown(TestData *data) { parcJSON_Release(&data->json); parcMemory_Deallocate((void **) &(data->jsonstring)); parcMemory_Deallocate((void **) &data); } LONGBOW_TEST_RUNNER(ccnx_ControlFacade) { // 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); LONGBOW_RUN_TEST_FIXTURE(Local); } // The Test Runner calls this function once before any Test Fixtures are run. LONGBOW_TEST_RUNNER_SETUP(ccnx_ControlFacade) { parcMemory_SetInterface(&PARCSafeMemoryAsPARCMemory); return LONGBOW_STATUS_SUCCEEDED; } // The Test Runner calls this function once after all the Test Fixtures are run. LONGBOW_TEST_RUNNER_TEARDOWN(ccnx_ControlFacade) { return LONGBOW_STATUS_SUCCEEDED; } LONGBOW_TEST_FIXTURE(Global) { LONGBOW_RUN_TEST_CASE(Global, ccnxControlFacade_CreateControlMessage_Notification); LONGBOW_RUN_TEST_CASE(Global, ccnxControlFacade_AssertValid); LONGBOW_RUN_TEST_CASE(Global, ccnxControlFacade_CreateCPI); LONGBOW_RUN_TEST_CASE(Global, ccnxControlFacade_CreateNotification); LONGBOW_RUN_TEST_CASE(Global, ccnxControlFacade_GetJson); LONGBOW_RUN_TEST_CASE(Global, ccnxControlFacade_IsCPI); LONGBOW_RUN_TEST_CASE(Global, ccnxControlFacade_IsNotification); LONGBOW_RUN_TEST_CASE(Global, ccnxControlFacade_Display); LONGBOW_RUN_TEST_CASE(Global, ccnxControlFacade_ToString); } LONGBOW_TEST_FIXTURE_SETUP(Global) { longBowTestCase_SetClipBoardData(testCase, _commonSetup()); return LONGBOW_STATUS_SUCCEEDED; } LONGBOW_TEST_FIXTURE_TEARDOWN(Global) { _commonTeardown(longBowTestCase_GetClipBoardData(testCase)); 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, ccnxControlFacade_CreateControlMessage_Notification) { TestData *data = longBowTestCase_GetClipBoardData(testCase); CCNxMetaMessage *control = ccnxControlFacade_CreateNotification(data->json); CCNxControl *cpiControl = ccnxMetaMessage_GetControl(control); assertNotNull(cpiControl, "Got null control message"); ccnxMetaMessage_Release(&control); } LONGBOW_TEST_CASE(Global, ccnxControlFacade_AssertValid) { TestData *data = longBowTestCase_GetClipBoardData(testCase); CCNxTlvDictionary *control = ccnxControlFacade_CreateCPI(data->json); ccnxControlFacade_AssertValid(control); ccnxTlvDictionary_Release(&control); } LONGBOW_TEST_CASE(Global, ccnxControlFacade_CreateCPI) { TestData *data = longBowTestCase_GetClipBoardData(testCase); CCNxTlvDictionary *control = ccnxControlFacade_CreateCPI(data->json); ccnxControlFacade_AssertValid(control); ccnxTlvDictionary_Release(&control); } LONGBOW_TEST_CASE(Global, ccnxControlFacade_CreateNotification) { TestData *data = longBowTestCase_GetClipBoardData(testCase); CCNxTlvDictionary *control = ccnxControlFacade_CreateNotification(data->json); ccnxControlFacade_AssertValid(control); ccnxTlvDictionary_Release(&control); } LONGBOW_TEST_CASE(Global, ccnxControlFacade_GetJson) { TestData *data = longBowTestCase_GetClipBoardData(testCase); CCNxTlvDictionary *control = ccnxControlFacade_CreateNotification(data->json); PARCJSON *json = ccnxControlFacade_GetJson(control); char *test = parcJSON_ToCompactString(json); char *truth = parcJSON_ToCompactString(data->json); assertTrue(strcmp(test, truth) == 0, "Wrong JSON\ngot %s\nexpected %s\n", test, truth); parcMemory_Deallocate((void **) &test); parcMemory_Deallocate((void **) &truth); ccnxTlvDictionary_Release(&control); } LONGBOW_TEST_CASE(Global, ccnxControlFacade_IsCPI) { TestData *data = longBowTestCase_GetClipBoardData(testCase); CCNxTlvDictionary *control = ccnxControlFacade_CreateCPI(data->json); assertTrue(ccnxControlFacade_IsCPI(control), "Notification says its not a notification"); ccnxTlvDictionary_Release(&control); } LONGBOW_TEST_CASE(Global, ccnxControlFacade_IsNotification) { TestData *data = longBowTestCase_GetClipBoardData(testCase); CCNxTlvDictionary *control = ccnxControlFacade_CreateNotification(data->json); assertTrue(ccnxControlFacade_IsNotification(control), "Notification says its not a notification"); ccnxTlvDictionary_Release(&control); } LONGBOW_TEST_CASE(Global, ccnxControlFacade_Display) { TestData *data = longBowTestCase_GetClipBoardData(testCase); CCNxTlvDictionary *control = ccnxControlFacade_CreateNotification(data->json); ccnxControlFacade_Display(control, 1); ccnxTlvDictionary_Release(&control); } LONGBOW_TEST_CASE(Global, ccnxControlFacade_ToString) { TestData *data = longBowTestCase_GetClipBoardData(testCase); CCNxTlvDictionary *control = ccnxControlFacade_CreateNotification(data->json); char *desc = ccnxControlFacade_ToString(control); assertNotNull(desc, "Expected a string"); printf("%s\n", desc); parcMemory_Deallocate((void **) &desc); ccnxTlvDictionary_Release(&control); } LONGBOW_TEST_FIXTURE(Local) { } LONGBOW_TEST_FIXTURE_SETUP(Local) { return LONGBOW_STATUS_SUCCEEDED; } LONGBOW_TEST_FIXTURE_TEARDOWN(Local) { 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; } int main(int argc, char *argv[]) { LongBowRunner *testRunner = LONGBOW_TEST_RUNNER_CREATE(ccnx_ControlFacade); int exitStatus = longBowMain(argc, argv, testRunner, NULL); longBowTestRunner_Destroy(&testRunner); exit(exitStatus); }