1 // Copyright 2011 The Kyua Authors. 2 // All rights reserved. 3 // 4 // Redistribution and use in source and binary forms, with or without 5 // modification, are permitted provided that the following conditions are 6 // met: 7 // 8 // * Redistributions of source code must retain the above copyright 9 // notice, this list of conditions and the following disclaimer. 10 // * Redistributions in binary form must reproduce the above copyright 11 // notice, this list of conditions and the following disclaimer in the 12 // documentation and/or other materials provided with the distribution. 13 // * Neither the name of Google Inc. nor the names of its contributors 14 // may be used to endorse or promote products derived from this software 15 // without specific prior written permission. 16 // 17 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 18 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 29 #include "model/context.hpp" 30 31 #include <map> 32 #include <sstream> 33 #include <string> 34 35 #include <atf-c++.hpp> 36 37 #include "utils/fs/path.hpp" 38 39 namespace fs = utils::fs; 40 41 42 ATF_TEST_CASE_WITHOUT_HEAD(ctor_and_getters); 43 ATF_TEST_CASE_BODY(ctor_and_getters) 44 { 45 std::map< std::string, std::string > env; 46 env["foo"] = "first"; 47 env["bar"] = "second"; 48 const model::context context(fs::path("/foo/bar"), env); 49 ATF_REQUIRE_EQ(fs::path("/foo/bar"), context.cwd()); 50 ATF_REQUIRE(env == context.env()); 51 } 52 53 54 ATF_TEST_CASE_WITHOUT_HEAD(operators_eq_and_ne); 55 ATF_TEST_CASE_BODY(operators_eq_and_ne) 56 { 57 std::map< std::string, std::string > env; 58 env["foo"] = "first"; 59 const model::context context1(fs::path("/foo/bar"), env); 60 const model::context context2(fs::path("/foo/bar"), env); 61 const model::context context3(fs::path("/foo/baz"), env); 62 env["bar"] = "second"; 63 const model::context context4(fs::path("/foo/bar"), env); 64 ATF_REQUIRE( context1 == context2); 65 ATF_REQUIRE(!(context1 != context2)); 66 ATF_REQUIRE(!(context1 == context3)); 67 ATF_REQUIRE( context1 != context3); 68 ATF_REQUIRE(!(context1 == context4)); 69 ATF_REQUIRE( context1 != context4); 70 } 71 72 73 ATF_TEST_CASE_WITHOUT_HEAD(output__empty_env); 74 ATF_TEST_CASE_BODY(output__empty_env) 75 { 76 const std::map< std::string, std::string > env; 77 const model::context context(fs::path("/foo/bar"), env); 78 79 std::ostringstream str; 80 str << context; 81 ATF_REQUIRE_EQ("context{cwd='/foo/bar', env=[]}", str.str()); 82 } 83 84 85 ATF_TEST_CASE_WITHOUT_HEAD(output__some_env); 86 ATF_TEST_CASE_BODY(output__some_env) 87 { 88 std::map< std::string, std::string > env; 89 env["foo"] = "first"; 90 env["bar"] = "second' var"; 91 const model::context context(fs::path("/foo/bar"), env); 92 93 std::ostringstream str; 94 str << context; 95 ATF_REQUIRE_EQ("context{cwd='/foo/bar', env=[bar='second\\' var', " 96 "foo='first']}", str.str()); 97 } 98 99 100 ATF_INIT_TEST_CASES(tcs) 101 { 102 ATF_ADD_TEST_CASE(tcs, ctor_and_getters); 103 ATF_ADD_TEST_CASE(tcs, operators_eq_and_ne); 104 ATF_ADD_TEST_CASE(tcs, output__empty_env); 105 ATF_ADD_TEST_CASE(tcs, output__some_env); 106 } 107