File: test-cachunker.c

package info (click to toggle)
casync 2%2B20180321-2.1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,876 kB
  • sloc: ansic: 30,815; sh: 379; python: 69; makefile: 6
file content (152 lines) | stat: -rw-r--r-- 6,601 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/* SPDX-License-Identifier: LGPL-2.1+ */

#include <assert.h>
#include <unistd.h>
#include <fcntl.h>

#include "cachunker.h"
#include "util.h"

static void test_rolling(void) {

        static const char buffer[] =
                "The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too.\n"
                "When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things.\n"
                "To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it.\n"
                "For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.\n"
                "We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software.\n"
                "Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations.\n"
                "Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all.\n"
                "The precise terms and conditions for copying, distribution and modification follow.\n";

        const char *p = buffer;
        CaChunker x = CA_CHUNKER_INIT;

        assert(sizeof(buffer) > CA_CHUNKER_WINDOW_SIZE);
        ca_chunker_start(&x, buffer, CA_CHUNKER_WINDOW_SIZE);

        while (p < buffer + sizeof(buffer) - CA_CHUNKER_WINDOW_SIZE) {
                CaChunker y = CA_CHUNKER_INIT;
                uint32_t k, v;

                k = ca_chunker_roll(&x, p[0], p[CA_CHUNKER_WINDOW_SIZE]);
                v = ca_chunker_start(&y, p+1, CA_CHUNKER_WINDOW_SIZE);

                /* printf("%08x vs. %08x\n", k, v); */

                assert_se(k == v);

                p++;
        }
}

static void test_chunk(void) {
        CaChunker x = CA_CHUNKER_INIT;
        uint8_t buffer[8*1024];
        size_t acc = 0;
        int fd;
        unsigned count = 0;

        fd = open("/dev/urandom", O_CLOEXEC|O_RDONLY|O_NOCTTY);
        assert_se(fd >= 0);

        for (;;) {
                const uint8_t *p;
                size_t n;

                assert_se(read(fd, buffer, sizeof(buffer)) == sizeof(buffer));

                p = buffer;
                n = sizeof(buffer);

                for (;;) {
                        size_t k;

                        k = ca_chunker_scan(&x, p, n);
                        if (k == (size_t) -1) {
                                acc += n;
                                break;
                        }

                        acc += k;
                        printf("%zu\n", acc);

                        assert_se(acc >= x.chunk_size_min);
                        assert_se(acc <= x.chunk_size_max);
                        acc = 0;

                        p += k, n -= k;

                        count ++;

                        if (count > 500)
                                goto finish;
                }
        }

finish:

        (void) close(fd);
}

static int test_set_size(void) {
        struct CaChunker x = CA_CHUNKER_INIT, y = CA_CHUNKER_INIT;

        ca_chunker_set_size(&y, 1024, 0, 0);
        assert_se(y.chunk_size_min == 1024);
        assert_se(y.chunk_size_avg == 4*1024);
        assert_se(y.chunk_size_max == 16*1024);

        y = x;
        ca_chunker_set_size(&y, 0, 0, 16*1024);
        assert_se(y.chunk_size_min == 1024);
        assert_se(y.chunk_size_avg == 4*1024);
        assert_se(y.chunk_size_max == 16*1024);

        y = x;
        ca_chunker_set_size(&y, 0, 4*1024, 0);
        assert_se(y.chunk_size_min == 1024);
        assert_se(y.chunk_size_avg == 4*1024);
        assert_se(y.chunk_size_max == 16*1024);

        y = x;
        ca_chunker_set_size(&y, 0, 4*1024, 16*1024);
        assert_se(y.chunk_size_min == 1024);
        assert_se(y.chunk_size_avg == 4*1024);
        assert_se(y.chunk_size_max == 16*1024);

        y = x;
        ca_chunker_set_size(&y, 1024, 4*1024, 16*1024);
        assert_se(y.chunk_size_min == 1024);
        assert_se(y.chunk_size_avg == 4*1024);
        assert_se(y.chunk_size_max == 16*1024);

        y = x;
        ca_chunker_set_size(&y, 1024, 4*1024, 0);
        assert_se(y.chunk_size_min == 1024);
        assert_se(y.chunk_size_avg == 4*1024);
        assert_se(y.chunk_size_max == 16*1024);

        y = x;
        ca_chunker_set_size(&y, 1024, 0, 16*1024);
        assert_se(y.chunk_size_min == 1024);
        assert_se(y.chunk_size_avg == 4*1024);
        assert_se(y.chunk_size_max == 16*1024);

        y = x;
        ca_chunker_set_size(&y, 128*1024, 0, 512*1024);
        assert_se(y.chunk_size_min == 128*1024);
        assert_se(y.chunk_size_avg == 256*1024);
        assert_se(y.chunk_size_max == 512*1024);

        return 0;
}

int main(int argc, char *argv[]) {

        test_rolling();
        test_chunk();
        test_set_size();

        return 0;
}