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
|
/* Copyright (c) 2002-2018 Pigeonhole authors, see the included COPYING file
*/
#include "lib.h"
#include "mempool.h"
#include "imem.h"
#include "array.h"
#include "strfuncs.h"
#include "unlink-directory.h"
#include "sieve.h"
#include "sieve-common.h"
#include "sieve-script.h"
#include "sieve-binary.h"
#include "sieve-error.h"
#include "testsuite-common.h"
#include "testsuite-binary.h"
#include <sys/stat.h>
#include <sys/types.h>
/*
* State
*/
static char *testsuite_binary_tmp = NULL;
/*
* Initialization
*/
void testsuite_binary_init(void)
{
testsuite_binary_tmp = i_strconcat
(testsuite_tmp_dir_get(), "/binaries", NULL);
if ( mkdir(testsuite_binary_tmp, 0700) < 0 ) {
i_fatal("failed to create temporary directory '%s': %m.",
testsuite_binary_tmp);
}
}
void testsuite_binary_deinit(void)
{
const char *error;
if ( unlink_directory(testsuite_binary_tmp, UNLINK_DIRECTORY_FLAG_RMDIR, &error) < 0 ) {
i_warning("failed to remove temporary directory '%s': %s.",
testsuite_binary_tmp, error);
}
i_free(testsuite_binary_tmp);
}
void testsuite_binary_reset(void)
{
testsuite_binary_init();
testsuite_binary_deinit();
}
/*
* Binary Access
*/
bool testsuite_binary_save(struct sieve_binary *sbin, const char *name)
{
return ( sieve_save_as(sbin, t_strdup_printf
("%s/%s", testsuite_binary_tmp, sieve_binfile_from_name(name)), TRUE,
0600, NULL) > 0 );
}
struct sieve_binary *testsuite_binary_load(const char *name)
{
struct sieve_instance *svinst = testsuite_sieve_instance;
return sieve_load(svinst, t_strdup_printf
("%s/%s", testsuite_binary_tmp, sieve_binfile_from_name(name)), NULL);
}
|