File: attributemap_hash_test.cc

package info (click to toggle)
opentelemetry-cpp 1.23.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,372 kB
  • sloc: cpp: 96,239; sh: 1,766; makefile: 36; python: 31
file content (33 lines) | stat: -rw-r--r-- 1,242 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0

#include "opentelemetry/sdk/common/attributemap_hash.h"
#include <gtest/gtest.h>

using namespace opentelemetry::sdk::common;
TEST(AttributeMapHashTest, BasicTests)
{
  {
    OrderedAttributeMap map1 = {{"k1", "v1"}, {"k2", "v2"}, {"k3", "v3"}};
    OrderedAttributeMap map2 = {{"k1", "v1"}, {"k2", "v2"}, {"k3", "v3"}, {"k4", "v4"}};
    OrderedAttributeMap map3 = {{"k3", "v3"}, {"k1", "v1"}, {"k2", "v2"}};

    EXPECT_TRUE(GetHashForAttributeMap(map1) != 0);
    EXPECT_TRUE(GetHashForAttributeMap(map1) == GetHashForAttributeMap(map1));
    EXPECT_TRUE(GetHashForAttributeMap(map1) != GetHashForAttributeMap(map2));
    EXPECT_TRUE(GetHashForAttributeMap(map1) == GetHashForAttributeMap(map3));
  }

  {
    // hash algo returns same value irrespective of order of attributes.
    OrderedAttributeMap map1 = {{"k1", 10}, {"k2", true}, {"k3", 12.22}};
    OrderedAttributeMap map2 = {{"k3", 12.22}, {"k1", 10}, {"k2", true}};
    EXPECT_TRUE(GetHashForAttributeMap(map1) == GetHashForAttributeMap(map2));
    EXPECT_TRUE(GetHashForAttributeMap(map1) != 0);
  }

  {
    OrderedAttributeMap map1 = {};
    EXPECT_TRUE(GetHashForAttributeMap(map1) == 0);
  }
}