aboutsummaryrefslogtreecommitdiffstats
path: root/test/rspamd_statfile_test.c
blob: 7a36a848d728a7cabcfcde48eaada6caf88924cc (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
#include "../src/config.h"
#include "../src/main.h"
#include "../src/statfile.h"
#include "tests.h"

#define TEST_FILENAME "/tmp/rspamd_test.stat"
#define HASHES_NUM 256

void 
rspamd_statfile_test_func ()
{
	statfile_pool_t *pool;
	memory_pool_t *p;
	stat_file_t *st;
	uint32_t random_hashes[HASHES_NUM], i, v;
	time_t now;
	
	p = memory_pool_new (memory_pool_get_size ());
	umask (S_IWGRP | S_IWOTH);
	pool = statfile_pool_new (p, 10 * 1024 * 1024);

	now = time (NULL);
	/* Fill random array */
	srand (now);
	for (i = 0; i < HASHES_NUM; i ++) {
		random_hashes[i] = rand ();
	}

	/* Create new file */
	g_assert (statfile_pool_create (pool, TEST_FILENAME, 65535) != -1);
	g_assert ((st = statfile_pool_open (pool, TEST_FILENAME, 65535, FALSE)) != NULL);
	
	/* Get and set random blocks */
	statfile_pool_lock_file (pool, st);
	for (i = 0; i < HASHES_NUM; i ++) {
		statfile_pool_set_block (pool, st, random_hashes[i], random_hashes[i], now, 1.0);
	}
	statfile_pool_unlock_file (pool, st);

	for (i = 0; i < HASHES_NUM; i ++) {
		v = statfile_pool_get_block (pool, st, random_hashes[i], random_hashes[i], now);
		g_assert(v == 1.0);
	}

	statfile_pool_delete (pool);
	
}