aboutsummaryrefslogtreecommitdiffstats
path: root/camel/tests/mime-filter/test-stripheader.c
blob: ff5446635b5f7d5227b41668aa434d6322f9350d (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
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
/*
  test-stripheader.c

  Test the CamelMimeFilterStripHeader class
*/

#include <stdio.h>
#include <string.h>

#include "camel-test.h"

#include <camel/camel-stream-fs.h>
#include <camel/camel-stream-mem.h>
#include <camel/camel-stream-filter.h>
#include <camel/camel-mime-filter-stripheader.h>

#define d(x) x

#define NUM_CASES 6
#define CHUNK_SIZE 32

int 
main(int argc, char **argv)
{
    CamelStream *source;
    CamelStream *correct;
    CamelStreamFilter *filter;
    CamelMimeFilter *sh;
    gchar *work;
    int i;
    ssize_t comp_progress, comp_correct_chunk, comp_filter_chunk;
    int comp_i;
    char comp_correct[CHUNK_SIZE], comp_filter[CHUNK_SIZE];

    camel_test_init(argc, argv);

    for (i = 0; i < NUM_CASES; i++) {
        work = g_strdup_printf ("Header stripping filter, test case %d", i);
        camel_test_start (work);
        g_free (work);

        camel_test_push ("Initializing objects");
        work = g_strdup_printf ("%s/stripheader-%d.in", SOURCEDIR, i + 1);
        source = camel_stream_fs_new_with_name (work, 0, O_RDONLY);
        if (!source) {
            camel_test_fail ("Failed to open input case in \"%s\"", work);
            g_free (work);
            continue;
        }
        g_free (work);

        work = g_strdup_printf ("%s/stripheader-%d.out", SOURCEDIR, i + 1);
        correct = camel_stream_fs_new_with_name (work, 0, O_RDONLY);
        if (!correct) {
            camel_test_fail ("Failed to open correct output in \"%s\"", work);
            g_free (work);
            continue;
        }
        g_free (work);

        filter = camel_stream_filter_new_with_stream (CAMEL_STREAM (source));
        if (!filter) {
            camel_test_fail ("Couldn't create CamelStreamFilter??");
            continue;
        }

        sh = camel_mime_filter_stripheader_new ("Stripped");
        if (!sh) {
            camel_test_fail ("Couldn't create CamelMimeFilterStripHeader??");
            continue;
        }

        camel_stream_filter_add (filter, sh);
        camel_test_pull ();

        camel_test_push ("Running filter and comparing to correct result");

        comp_progress = 0;

        while (1) {
            comp_correct_chunk = camel_stream_read (correct, comp_correct, CHUNK_SIZE);
            comp_filter_chunk = 0;

            if (comp_correct_chunk == 0)
                break;

            while (comp_filter_chunk < comp_correct_chunk) {
                ssize_t delta;

                delta = camel_stream_read (CAMEL_STREAM (filter), 
                               comp_filter + comp_filter_chunk, 
                               CHUNK_SIZE - comp_filter_chunk);

                if (delta == 0) {
                    camel_test_fail ("Chunks are different sizes: correct is %d, filter is %d, %d bytes into stream",
                             comp_correct_chunk, comp_filter_chunk, comp_progress);
                }

                comp_filter_chunk += delta;
            }

            d(printf ("\n\nCORRECT: >>%.*s<<", comp_correct_chunk, comp_correct);)
            d(printf ("\nFILTER : >>%.*s<<\n", comp_filter_chunk, comp_filter);)

            for (comp_i = 0; comp_i < comp_filter_chunk; comp_i++) {
                if (comp_correct[comp_i] != comp_filter[comp_i]) {
                    camel_test_fail ("Difference: correct is %c, filter is %c, %d bytes into stream",
                             comp_correct[comp_i], 
                             comp_filter[comp_i],
                             comp_progress + comp_i);
                }
            }

            comp_progress += comp_filter_chunk;
        }

        camel_test_pull ();

        /* inefficient */
        camel_test_push ("Cleaning up");
        camel_object_unref (CAMEL_OBJECT (filter));
        camel_object_unref (CAMEL_OBJECT (correct));
        camel_object_unref (CAMEL_OBJECT (source));
        camel_object_unref (CAMEL_OBJECT (sh));
        camel_test_pull ();

        camel_test_end();
    }

    return 0;
}