summaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/util/hamming/hamming_test.cpp
blob: b63d32e4e96b24e87507c7a8e04d350b4b43b165 (plain) (blame)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <vespa/vespalib/util/binary_hamming_distance.h>
#include <vespa/vespalib/util/require.h>
#include <vespa/vespalib/gtest/gtest.h>
#include <cstdlib>
#include <cstring>

using namespace vespalib;

constexpr size_t ALIGN = 8;
constexpr size_t SZ = 64;

void flip_one_bit(void *memory, void *other) {
    auto buf = (uint8_t *)memory;
    auto cmp = (uint8_t *)other;
    while (true) {
        size_t byte_idx = random() % SZ;
        size_t bit_idx = random() % 8;
        uint8_t lookaside = cmp[byte_idx];
        uint8_t old = buf[byte_idx];
        uint8_t bit = 1u << bit_idx;
        if ((old & bit) == (lookaside & bit)) {
            uint8_t new_val = old ^ bit;
            REQUIRE(old != new_val);
            buf[byte_idx] = new_val;
            return;
        }
    }
}

void *my_alloc(int unalignment = 0) {
    void *mem;
    int r = posix_memalign(&mem, ALIGN, SZ*2);
    REQUIRE_EQ(0, r);
    uintptr_t addr = (uintptr_t) mem;
    addr += unalignment;
    return (void *)addr;
}

void check_with_flipping(void *mem_a, void *mem_b) {
    memset(mem_a, 0, SZ);
    memset(mem_b, 0, SZ);
    size_t dist = 0;
    EXPECT_EQ(binary_hamming_distance(mem_a, mem_b, SZ), dist);
    while (dist < 100) {
        flip_one_bit(mem_a, mem_b);
        ++dist;
        EXPECT_EQ(binary_hamming_distance(mem_a, mem_b, SZ), dist);
        flip_one_bit(mem_b, mem_a);
        ++dist;
        EXPECT_EQ(binary_hamming_distance(mem_a, mem_b, SZ), dist);
    }
}

TEST(BinaryHammingTest, aligned_usage) {
    void *mem_a = my_alloc(0);
    void *mem_b = my_alloc(0);
    check_with_flipping(mem_a, mem_b);
}

TEST(BinaryHammingTest, one_unaligned) {
    void *mem_a = my_alloc(3);
    void *mem_b = my_alloc(0);
    check_with_flipping(mem_a, mem_b);
}

TEST(BinaryHammingTest, other_unaligned) {
    void *mem_a = my_alloc(0);
    void *mem_b = my_alloc(7);
    check_with_flipping(mem_a, mem_b);
}

TEST(BinaryHammingTest, both_unaligned) {
    void *mem_a = my_alloc(2);
    void *mem_b = my_alloc(6);
    check_with_flipping(mem_a, mem_b);
}

GTEST_MAIN_RUN_ALL_TESTS()