/* ///////////////////////////////////////////////////////////////////////// * File: test/component/test.component.inserters.hostId/test.component.inserters.hostId.cpp * * Purpose: Implementation file for the test.component.inserters.hostId project. * * Created: 14th April 2008 * Updated: 23rd March 2010 * * Status: Wizard-generated * * License: (Licensed under the Synesis Software Open License) * * Copyright (c) 2008-2010, Synesis Software Pty Ltd. * All rights reserved. * * www: http://www.synesis.com.au/software * * ////////////////////////////////////////////////////////////////////// */ #include /* xTests Header Files */ #include /* Pantheios Header Files */ #include // Pantheios C++ main header #include // for pantheios::hostId #include /* STLSoft Header Files */ #include #include /* Standard C++ Header Files */ #include /* Standard C Header Files */ #include // for exit codes #if defined(PLATFORMSTL_OS_IS_UNIX) # include #elif defined(PLATFORMSTL_OS_IS_WINDOWS) # include #else /* ? OS */ # error Not discriminated for platforms other than UNIX and Windows #endif /* OS */ #include /* ///////////////////////////////////////////////////////////////////////// * Typedefs */ typedef std::basic_string string_t; /* ///////////////////////////////////////////////////////////////////////// * Forward declarations */ static void test_1_01(); static string_t pan_get_hid_(); /* ////////////////////////////////////////////////////////////////////// */ /* Define the stock front-end process identity, so that it links when using * fe.N, fe.simple, etc. */ PANTHEIOS_EXTERN_C const PAN_CHAR_T PANTHEIOS_FE_PROCESS_IDENTITY[] = PANTHEIOS_LITERAL_STRING("test.component.inserters.hostId"); /* ////////////////////////////////////////////////////////////////////// */ #define PSTR(x) PANTHEIOS_LITERAL_STRING(x) /* ///////////////////////////////////////////////////////////////////////// * Character encoding */ #ifdef PANTHEIOS_USE_WIDE_STRINGS # define pantheios_GetComputerName_ ::GetComputerNameW # define XTESTS_TEST_STRING_EQUAL XTESTS_TEST_WIDE_STRING_EQUAL #else /* ? PANTHEIOS_USE_WIDE_STRINGS */ # define pantheios_GetComputerName_ ::GetComputerNameA # define XTESTS_TEST_STRING_EQUAL XTESTS_TEST_MULTIBYTE_STRING_EQUAL #endif /* PANTHEIOS_USE_WIDE_STRINGS */ /* ////////////////////////////////////////////////////////////////////// */ int main(int argc, char** argv) { int retCode = EXIT_SUCCESS; int verbosity = 2; XTESTS_COMMANDLINE_PARSEVERBOSITY(argc, argv, &verbosity); if(XTESTS_START_RUNNER("test.component.inserters.hostId", verbosity)) { XTESTS_RUN_CASE(test_1_01); XTESTS_PRINT_RESULTS(); XTESTS_END_RUNNER_UPDATE_EXITCODE(&retCode); } return retCode; } /* ////////////////////////////////////////////////////////////////////// */ static void test_1_01() { // 1. Setup const PAN_CHAR_T prefix[] = PSTR("host: "); const string_t hid = pan_get_hid_(); const string_t stmt = prefix + hid; pantheios::be::test::reset(); // 2. Create test data pantheios::log_NOTICE(pantheios::hostId); pantheios::log_NOTICE(prefix, pantheios::hostId); // 3. Verification pantheios::be::test::Results results = pantheios::be::test::results(); XTESTS_TEST(!results.empty()); XTESTS_TEST(2 == results.size()); XTESTS_TEST_STRING_EQUAL(hid, results[0].statement); XTESTS_TEST_STRING_EQUAL(stmt, results[1].statement); } static string_t pan_get_hid_() { #if defined(PLATFORMSTL_OS_IS_UNIX) PAN_CHAR_T szHostName[1001]; if(0 != ::gethostname(&szHostName[0], STLSOFT_NUM_ELEMENTS(szHostName))) { return PANTHEIOS_LITERAL_STRING("localhost"); } else { return szHostName; } #elif defined(PLATFORMSTL_OS_IS_WINDOWS) PAN_CHAR_T szHostName[1001]; DWORD cchHostName = STLSOFT_NUM_ELEMENTS(szHostName); if(!pantheios_GetComputerName_(&szHostName[0], &cchHostName)) { return PANTHEIOS_LITERAL_STRING("localhost"); } else { return string_t(szHostName, static_cast(cchHostName)); } #else /* ? OS */ # error Not discriminated for platforms other than UNIX and Windows #endif /* OS */ } /* ///////////////////////////// end of file //////////////////////////// */