-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: Bring back the unit tests of deprecated features
- Loading branch information
Showing
2 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
// EVMC: Ethereum Client-VM Connector API. | ||
// Copyright 2019 The EVMC Authors. | ||
// Licensed under the Apache License, Version 2.0. | ||
|
||
#include <evmc/helpers.hpp> | ||
|
||
#include <gtest/gtest.h> | ||
#include <map> | ||
#include <unordered_map> | ||
|
||
#pragma GCC diagnostic ignored "-Wdeprecated-declarations" | ||
|
||
TEST(helpers, fnv1a) | ||
{ | ||
const uint8_t text[] = {'E', 'V', 'M', 'C'}; | ||
const auto h = fnv1a(text, sizeof(text)); | ||
EXPECT_EQ(h, sizeof(size_t) == 8 ? 0x15e05d6d22fed89a : 0xffaa6a9a); | ||
} | ||
|
||
TEST(helpers, is_zero) | ||
{ | ||
auto a = evmc_address{}; | ||
EXPECT_TRUE(is_zero(a)); | ||
a.bytes[0] = 1; | ||
EXPECT_FALSE(is_zero(a)); | ||
|
||
auto b = evmc_bytes32{}; | ||
EXPECT_TRUE(is_zero(b)); | ||
b.bytes[0] = 1; | ||
EXPECT_FALSE(is_zero(b)); | ||
} | ||
|
||
TEST(helpers, maps) | ||
{ | ||
std::map<evmc_address, bool> addresses; | ||
addresses[{}] = true; | ||
ASSERT_EQ(addresses.size(), 1); | ||
|
||
std::unordered_map<evmc_address, bool> unordered_addresses; | ||
unordered_addresses.emplace(*addresses.begin()); | ||
EXPECT_EQ(unordered_addresses.size(), 1); | ||
|
||
std::map<evmc_bytes32, bool> storage; | ||
storage[{}] = true; | ||
ASSERT_EQ(storage.size(), 1); | ||
|
||
std::unordered_map<evmc_bytes32, bool> unordered_storage; | ||
unordered_storage.emplace(*storage.begin()); | ||
EXPECT_EQ(unordered_storage.size(), 1); | ||
} |