aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/SortTest.cpp
blob: 2ca8f2f614ae30602b97358d0c4c36413ac018e8 (plain)
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
81
82
83

/*
 * Copyright 2011 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */
#include "Test.h"
#include "SkRandom.h"
#include "SkChecksum.h"
#include "SkTSort.h"

// assert that as we change values (from 0 to non-zero) in our buffer, we
// get a different value
static void test_checksum(skiatest::Reporter* reporter, size_t size) {
    SkAutoMalloc storage(size);
    uint32_t*    ptr = (uint32_t*)storage.get();
    char*        cptr = (char*)ptr;

    sk_bzero(ptr, size);
    uint32_t prev = 0;
    for (size_t i = 0; i < size; ++i) {
        cptr[i] = 0x5B; // just need some non-zero value here
        uint32_t curr = SkChecksum::Compute(ptr, size);
        REPORTER_ASSERT(reporter, prev != curr);
        prev = curr;
    }
}

static void test_checksum(skiatest::Reporter* reporter) {
    REPORTER_ASSERT(reporter, SkChecksum::Compute(NULL, 0) == 0);

    for (size_t size = 4; size <= 1000; size += 4) {
        test_checksum(reporter, size);
    }
}

extern "C" {
    static int compare_int(const void* a, const void* b) {
        return *(const int*)a - *(const int*)b;
    }
}

static void rand_array(SkRandom& rand, int array[], int n) {
    for (int j = 0; j < n; j++) {
        array[j] = rand.nextS() & 0xFF;
    }
}

static void check_sort(skiatest::Reporter* reporter, const char label[],
                       const int array[], int n) {
    for (int j = 1; j < n; j++) {
        if (array[j-1] > array[j]) {
            SkString str;
           str.printf("%sSort [%d] failed %d %d", label, n,
                      array[j-1], array[j]);
            reporter->reportFailed(str);
        }
    }
}

static void TestSort(skiatest::Reporter* reporter) {
    int         array[500];
    SkRandom    rand;

    for (int i = 0; i < 10000; i++) {
        int count = rand.nextRangeU(1, SK_ARRAY_COUNT(array));

        rand_array(rand, array, count);
        SkTHeapSort<int>(array, count);
        check_sort(reporter, "Heap", array, count);
    }
    if (false) { // avoid bit rot, suppress warning
        compare_int(array, array);
    }
    
    test_checksum(reporter);
}

// need tests for SkStrSearch

#include "TestClassDef.h"
DEFINE_TESTCLASS("Sort", SortTestClass, TestSort)