a747113422afaa29ce72d2c5ba7f0b7ea9ec2054Evan Hunt// Copyright (c) 2007 The NetBSD Foundation, Inc.
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// All rights reserved.
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// Redistribution and use in source and binary forms, with or without
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// modification, are permitted provided that the following conditions
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// 1. Redistributions of source code must retain the above copyright
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// notice, this list of conditions and the following disclaimer.
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// 2. Redistributions in binary form must reproduce the above copyright
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// notice, this list of conditions and the following disclaimer in the
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// documentation and/or other materials provided with the distribution.
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4a53e3c2b83c476a93148eaee0272649beb221caMark Andrews#include "atf-c++/detail/text.hpp"
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// ------------------------------------------------------------------------
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// Test cases for the free functions.
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// ------------------------------------------------------------------------
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt set_md_var("descr", "Tests the duplicate function");
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt // First set of tests using a non-sorted collection, std::vector.
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt // Second set of tests using a sorted collection, std::set.
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt ATF_REQUIRE_THROW(std::runtime_error, match("", "["));
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt set_md_var("descr", "Tests the split function using different delimiters");
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt words = split("aLONGDELIMbcdLONGDELIMef", "LONGDELIM");
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt set_md_var("descr", "Tests the to_string function");
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt ATF_REQUIRE_THROW(std::runtime_error, to_bool(""));
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt ATF_REQUIRE_THROW(std::runtime_error, to_bool("tru"));
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt ATF_REQUIRE_THROW(std::runtime_error, to_bool("true2"));
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt ATF_REQUIRE_THROW(std::runtime_error, to_bool("fals"));
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt ATF_REQUIRE_THROW(std::runtime_error, to_bool("false2"));
a747113422afaa29ce72d2c5ba7f0b7ea9ec2054Evan Hunt set_md_var("descr", "Tests the to_bytes function");
a747113422afaa29ce72d2c5ba7f0b7ea9ec2054Evan Hunt ATF_REQUIRE_EQ(int64_t(8) * 1024 * 1024 * 1024, to_bytes("8g"));
a747113422afaa29ce72d2c5ba7f0b7ea9ec2054Evan Hunt ATF_REQUIRE_EQ(int64_t(16) * 1024 * 1024 * 1024 * 1024, to_bytes("16t"));
a747113422afaa29ce72d2c5ba7f0b7ea9ec2054Evan Hunt ATF_REQUIRE_THROW_RE(std::runtime_error, "Empty", to_bytes(""));
a747113422afaa29ce72d2c5ba7f0b7ea9ec2054Evan Hunt ATF_REQUIRE_THROW_RE(std::runtime_error, "Unknown size unit 'd'",
a747113422afaa29ce72d2c5ba7f0b7ea9ec2054Evan Hunt ATF_REQUIRE_THROW(std::runtime_error, to_bytes(" "));
a747113422afaa29ce72d2c5ba7f0b7ea9ec2054Evan Hunt ATF_REQUIRE_THROW(std::runtime_error, to_bytes(" k"));
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt set_md_var("descr", "Tests the to_string function");
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt set_md_var("descr", "Tests the to_type function");
a747113422afaa29ce72d2c5ba7f0b7ea9ec2054Evan Hunt ATF_REQUIRE_THROW(std::runtime_error, to_type< int >(" "));
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt ATF_REQUIRE_THROW(std::runtime_error, to_type< int >("0 a"));
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt ATF_REQUIRE_THROW(std::runtime_error, to_type< int >("a"));
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt ATF_REQUIRE_EQ(to_type< float >("1234.5"), 1234.5);
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt ATF_REQUIRE_THROW(std::runtime_error, to_type< float >("0.5 a"));
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt ATF_REQUIRE_THROW(std::runtime_error, to_type< float >("a"));
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// ------------------------------------------------------------------------
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt// ------------------------------------------------------------------------
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt // Add the test cases for the free functions.