summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvisvgm/dvisvgm-0.8.7/tests/PageSizeTest.cpp
blob: 6b02ac1e48a422d92eb7d1903d2a67af349e3307 (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
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
/*************************************************************************
** PageSizeTest.cpp                                                     **
**                                                                      **
** This file is part of dvisvgm -- the DVI to SVG converter             **
** Copyright (C) 2005-2009 Martin Gieseking <martin.gieseking@uos.de>   **
**                                                                      **
** This program is free software; you can redistribute it and/or        ** 
** modify it under the terms of the GNU General Public License as       **
** published by the Free Software Foundation; either version 3 of       **
** the License, or (at your option) any later version.                  **
**                                                                      **
** This program is distributed in the hope that it will be useful, but  **
** WITHOUT ANY WARRANTY; without even the implied warranty of           **
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the         **
** GNU General Public License for more details.                         **
**                                                                      **
** You should have received a copy of the GNU General Public License    **
** along with this program; if not, see <http://www.gnu.org/licenses/>. ** 
*************************************************************************/

#include <gtest/gtest.h>
#include <limits>
#include "PageSize.h"


class PageSizeTest : public ::testing::Test
{
	protected:
		struct PageData 
		{
			const char *id;
			double width, height;
		};

		static const PageData pageData[];
		
		PageSize ps;
};


const PageSizeTest::PageData PageSizeTest::pageData[] = {
	{"A4", 210, 297},
	{"a4", 210, 297}, 
	{"a4-p", 210, 297}, 
	{"a4-portrait", 210, 297}, 
	{"a4-l", 297, 210}, 
	{"a4-landscape", 297, 210}, 
	{"a5", 148, 210}, 
	{"c10", 28, 40},
	{"letter", 216, 279},
	{0, 0, 0}
};


TEST_F(PageSizeTest, resize) {
	EXPECT_FALSE(ps.valid());
	
	for (const PageData *p = pageData; p && p->id; p++) {
		ps.resize(p->id);
		EXPECT_DOUBLE_EQ(ps.widthInMM(), p->width);
		EXPECT_DOUBLE_EQ(ps.heightInMM(), p->height);
	}
}


TEST_F(PageSizeTest, exceptions) {
	EXPECT_THROW(ps.resize("a"), PageSizeException);
	EXPECT_THROW(ps.resize("e4"), PageSizeException);
	EXPECT_THROW(ps.resize("a4-unknown"), PageSizeException);
}