2016-02-08 06:34:21 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (c) 2015 Microsoft Corporation. All rights reserved.
|
|
|
|
//
|
|
|
|
// This code is licensed under the MIT License (MIT).
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
// THE SOFTWARE.
|
|
|
|
//
|
2015-08-20 21:09:14 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2018-08-13 00:44:17 -04:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
// blanket turn off warnings from CppCoreCheck from catch
|
|
|
|
// so people aren't annoyed by them when running the tool.
|
|
|
|
#pragma warning(disable : 26440 26426) // from catch
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2019-12-04 15:30:58 -05:00
|
|
|
#if __clang__ || __GNUC__
|
|
|
|
//disable warnings from gtest
|
|
|
|
#pragma GCC diagnostic push
|
2019-12-04 15:48:13 -05:00
|
|
|
#pragma GCC diagnostic ignored "-Wundef"
|
2019-12-19 17:05:02 -05:00
|
|
|
#endif // __clang__ || __GNUC__
|
|
|
|
|
2019-12-06 19:03:47 -05:00
|
|
|
#if __clang__
|
2019-12-04 15:30:58 -05:00
|
|
|
#pragma GCC diagnostic ignored "-Wglobal-constructors"
|
|
|
|
#pragma GCC diagnostic ignored "-Wused-but-marked-unused"
|
|
|
|
#pragma GCC diagnostic ignored "-Wcovered-switch-default"
|
2019-12-19 17:05:02 -05:00
|
|
|
#endif // __clang__
|
|
|
|
|
2019-12-04 15:30:58 -05:00
|
|
|
|
2019-12-03 17:32:25 -05:00
|
|
|
#include <gtest/gtest.h>
|
2017-04-20 10:51:37 -04:00
|
|
|
|
2017-11-28 10:13:49 -05:00
|
|
|
#include <gsl/gsl_util> // for narrow, finally, narrow_cast, narrowing_e...
|
2017-04-20 10:51:37 -04:00
|
|
|
|
2018-02-21 16:33:07 -05:00
|
|
|
#include <algorithm> // for move
|
|
|
|
#include <functional> // for reference_wrapper, _Bind_helper<>::type
|
|
|
|
#include <limits> // for numeric_limits
|
|
|
|
#include <stdint.h> // for uint32_t, int32_t
|
|
|
|
#include <type_traits> // for is_same
|
2015-08-20 21:09:14 -04:00
|
|
|
|
2015-09-29 19:41:37 -04:00
|
|
|
using namespace gsl;
|
2015-08-20 21:09:14 -04:00
|
|
|
|
2019-12-19 17:05:02 -05:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
static constexpr char deathstring[] = "Expected Death";
|
2019-12-03 17:32:25 -05:00
|
|
|
void f(int& i) { i += 1; }
|
|
|
|
static int j = 0;
|
|
|
|
void g() { j += 1; }
|
2019-12-12 13:55:26 -05:00
|
|
|
}
|
|
|
|
|
2019-12-03 17:32:25 -05:00
|
|
|
|
|
|
|
TEST(utils_tests, sanity_check_for_gsl_index_typedef)
|
2018-02-21 16:33:07 -05:00
|
|
|
{
|
|
|
|
static_assert(std::is_same<gsl::index, std::ptrdiff_t>::value,
|
|
|
|
"gsl::index represents wrong arithmetic type");
|
|
|
|
}
|
|
|
|
|
2019-12-03 17:32:25 -05:00
|
|
|
TEST(utils_tests, finally_lambda)
|
2015-08-20 21:09:14 -04:00
|
|
|
{
|
2017-07-13 16:53:56 -04:00
|
|
|
int i = 0;
|
|
|
|
{
|
|
|
|
auto _ = finally([&]() { f(i); });
|
2019-12-04 16:46:50 -05:00
|
|
|
EXPECT_TRUE(i == 0);
|
2017-07-13 16:53:56 -04:00
|
|
|
}
|
2019-12-04 16:46:50 -05:00
|
|
|
EXPECT_TRUE(i == 1);
|
2017-07-13 16:53:56 -04:00
|
|
|
}
|
2015-08-20 21:09:14 -04:00
|
|
|
|
2019-12-03 17:32:25 -05:00
|
|
|
TEST(utils_tests, finally_lambda_move)
|
2017-07-13 16:53:56 -04:00
|
|
|
{
|
|
|
|
int i = 0;
|
2015-08-20 21:09:14 -04:00
|
|
|
{
|
2017-07-13 16:53:56 -04:00
|
|
|
auto _1 = finally([&]() { f(i); });
|
2015-08-20 21:09:14 -04:00
|
|
|
{
|
2017-07-13 16:53:56 -04:00
|
|
|
auto _2 = std::move(_1);
|
2019-12-04 16:46:50 -05:00
|
|
|
EXPECT_TRUE(i == 0);
|
2015-08-20 21:09:14 -04:00
|
|
|
}
|
2019-12-04 16:46:50 -05:00
|
|
|
EXPECT_TRUE(i == 1);
|
2015-09-29 01:03:15 -04:00
|
|
|
{
|
2017-07-13 16:53:56 -04:00
|
|
|
auto _2 = std::move(_1);
|
2019-12-04 16:46:50 -05:00
|
|
|
EXPECT_TRUE(i == 1);
|
2015-09-29 01:03:15 -04:00
|
|
|
}
|
2019-12-04 16:46:50 -05:00
|
|
|
EXPECT_TRUE(i == 1);
|
2015-09-29 01:03:15 -04:00
|
|
|
}
|
2019-12-04 16:46:50 -05:00
|
|
|
EXPECT_TRUE(i == 1);
|
2017-07-13 16:53:56 -04:00
|
|
|
}
|
2015-09-29 01:03:15 -04:00
|
|
|
|
2019-12-03 17:32:25 -05:00
|
|
|
TEST(utils_tests, finally_function_with_bind)
|
2017-07-13 16:53:56 -04:00
|
|
|
{
|
|
|
|
int i = 0;
|
2015-08-20 21:09:14 -04:00
|
|
|
{
|
2017-07-13 16:53:56 -04:00
|
|
|
auto _ = finally(std::bind(&f, std::ref(i)));
|
2019-12-04 16:46:50 -05:00
|
|
|
EXPECT_TRUE(i == 0);
|
2015-08-20 21:09:14 -04:00
|
|
|
}
|
2019-12-04 16:46:50 -05:00
|
|
|
EXPECT_TRUE(i == 1);
|
2017-07-13 16:53:56 -04:00
|
|
|
}
|
2015-08-20 21:09:14 -04:00
|
|
|
|
2019-12-03 17:32:25 -05:00
|
|
|
TEST(utils_tests, finally_function_ptr)
|
2017-07-13 16:53:56 -04:00
|
|
|
{
|
|
|
|
j = 0;
|
2015-08-20 21:09:14 -04:00
|
|
|
{
|
2017-07-13 16:53:56 -04:00
|
|
|
auto _ = finally(&g);
|
2019-12-04 16:46:50 -05:00
|
|
|
EXPECT_TRUE(j == 0);
|
2015-08-20 21:09:14 -04:00
|
|
|
}
|
2019-12-04 16:46:50 -05:00
|
|
|
EXPECT_TRUE(j == 1);
|
2017-07-13 16:53:56 -04:00
|
|
|
}
|
2015-08-20 21:09:14 -04:00
|
|
|
|
2019-12-03 17:32:25 -05:00
|
|
|
TEST(utils_tests, narrow_cast)
|
2017-07-13 16:53:56 -04:00
|
|
|
{
|
|
|
|
int n = 120;
|
|
|
|
char c = narrow_cast<char>(n);
|
2019-12-04 16:46:50 -05:00
|
|
|
EXPECT_TRUE(c == 120);
|
2015-08-20 21:09:14 -04:00
|
|
|
|
2017-07-13 16:53:56 -04:00
|
|
|
n = 300;
|
|
|
|
unsigned char uc = narrow_cast<unsigned char>(n);
|
2019-12-04 16:46:50 -05:00
|
|
|
EXPECT_TRUE(uc == 44);
|
2017-07-13 16:53:56 -04:00
|
|
|
}
|
2015-08-20 21:09:14 -04:00
|
|
|
|
2019-12-03 17:32:25 -05:00
|
|
|
TEST(utils_tests, narrow)
|
2019-12-12 19:48:59 -05:00
|
|
|
{
|
2019-12-12 13:55:26 -05:00
|
|
|
std::set_terminate([] {
|
|
|
|
std::cerr << "Expected Death. narrow";
|
|
|
|
std::abort();
|
|
|
|
});
|
2019-12-12 14:15:41 -05:00
|
|
|
|
2017-07-13 16:53:56 -04:00
|
|
|
int n = 120;
|
|
|
|
const char c = narrow<char>(n);
|
2019-12-04 16:46:50 -05:00
|
|
|
EXPECT_TRUE(c == 120);
|
2015-08-20 21:09:14 -04:00
|
|
|
|
2017-07-13 16:53:56 -04:00
|
|
|
n = 300;
|
2019-12-12 14:15:41 -05:00
|
|
|
EXPECT_DEATH(narrow<char>(n), deathstring);
|
2016-02-08 06:34:21 -05:00
|
|
|
|
2017-07-13 16:53:56 -04:00
|
|
|
const auto int32_max = std::numeric_limits<int32_t>::max();
|
|
|
|
const auto int32_min = std::numeric_limits<int32_t>::min();
|
2016-02-08 06:34:21 -05:00
|
|
|
|
2019-12-03 17:32:25 -05:00
|
|
|
EXPECT_TRUE(narrow<uint32_t>(int32_t(0)) == 0);
|
|
|
|
EXPECT_TRUE(narrow<uint32_t>(int32_t(1)) == 1);
|
|
|
|
EXPECT_TRUE(narrow<uint32_t>(int32_max) == static_cast<uint32_t>(int32_max));
|
2016-02-08 06:34:21 -05:00
|
|
|
|
2019-12-12 14:15:41 -05:00
|
|
|
EXPECT_DEATH(narrow<uint32_t>(int32_t(-1)), deathstring);
|
|
|
|
EXPECT_DEATH(narrow<uint32_t>(int32_min), deathstring);
|
2016-02-08 06:34:21 -05:00
|
|
|
|
2017-07-13 16:53:56 -04:00
|
|
|
n = -42;
|
2019-12-12 14:15:41 -05:00
|
|
|
EXPECT_DEATH(narrow<unsigned>(n), deathstring);
|
2019-01-14 21:37:37 -05:00
|
|
|
|
|
|
|
#if GSL_CONSTEXPR_NARROW
|
|
|
|
static_assert(narrow<char>(120) == 120, "Fix GSL_CONSTEXPR_NARROW");
|
|
|
|
#endif
|
2019-12-03 17:32:25 -05:00
|
|
|
|
2015-08-20 21:09:14 -04:00
|
|
|
}
|
2019-12-04 15:30:58 -05:00
|
|
|
|
|
|
|
#if __clang__ || __GNUC__
|
|
|
|
#pragma GCC diagnostic pop
|
2019-12-19 17:05:02 -05:00
|
|
|
#endif // __clang__ || __GNUC__
|