File: export.cpp

package info (click to toggle)
libcaca 0.99.beta18-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 6,936 kB
  • sloc: ansic: 22,177; python: 2,316; cs: 1,213; cpp: 1,107; java: 916; objc: 836; makefile: 636; sh: 381; ruby: 193; asm: 65
file content (72 lines) | stat: -rw-r--r-- 2,163 bytes parent folder | download | duplicates (2)
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
/*
 *  caca-test     testsuite program for libcaca
 *  Copyright (c) 2009 Pascal Terjan <pterjan@linuxfr.org>
 *                All Rights Reserved
 *
 *  This program is free software. It comes without any warranty, to
 *  the extent permitted by applicable law. You can redistribute it
 *  and/or modify it under the terms of the Do What The Fuck You Want
 *  To Public License, Version 2, as published by Sam Hocevar. See
 *  http://sam.zoy.org/wtfpl/COPYING for more details.
 */

#include "config.h"

#include <cppunit/extensions/HelperMacros.h>
#include <cppunit/TestCaller.h>
#include <cppunit/TestCase.h>
#include <cppunit/TestSuite.h>

#include "caca.h"

class ExportTest : public CppUnit::TestCase
{
    CPPUNIT_TEST_SUITE(ExportTest);
    CPPUNIT_TEST(test_export_area_caca);
    CPPUNIT_TEST_SUITE_END();

public:
    ExportTest() : CppUnit::TestCase("Export/Import Test") {}

    void setUp() {}

    void tearDown() {}

    void test_export_area_caca()
    {
        caca_canvas_t *cv;
        size_t bytes, l;
        void *buf;

        cv = caca_create_canvas(WIDTH, HEIGHT);
        caca_put_char(cv, 7, 3, 'a');
        caca_put_char(cv, 10, 3, 'b');
        caca_put_char(cv, 5, 5, 'c');
        buf = caca_export_area_to_memory (cv, 0, 0, 10, 5, "caca", &bytes);
        CPPUNIT_ASSERT(buf != NULL);
        CPPUNIT_ASSERT(bytes > 0);

        caca_clear_canvas(cv);
        l = caca_import_area_from_memory(cv, 0, 0, buf, bytes, "caca");
        CPPUNIT_ASSERT(l == bytes);
        CPPUNIT_ASSERT(caca_get_char(cv, 7, 3) == 'a');
        CPPUNIT_ASSERT(caca_get_char(cv, 10, 3) == ' ');
        CPPUNIT_ASSERT(caca_get_char(cv, 5, 5) == ' ');

        caca_put_char(cv, 10, 3, 'b');
        caca_put_char(cv, 5, 5, 'c');
        l = caca_import_area_from_memory(cv, 0, 0, buf, bytes, "caca");
        CPPUNIT_ASSERT(l == bytes);
        CPPUNIT_ASSERT(caca_get_char(cv, 7, 3) == 'a');
        CPPUNIT_ASSERT(caca_get_char(cv, 10, 3) == 'b');
        CPPUNIT_ASSERT(caca_get_char(cv, 5, 5) == 'c');

        caca_free_canvas(cv);
    }

private:
    static int const WIDTH = 80, HEIGHT = 50;
};

CPPUNIT_TEST_SUITE_REGISTRATION(ExportTest);