OLD | NEW |
---|---|
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "printing/pdf_ps_metafile_cairo.h" | 5 #include "printing/pdf_ps_metafile_cairo.h" |
6 | 6 |
7 #include <fcntl.h> | 7 #include <fcntl.h> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/file_descriptor_posix.h" | 11 #include "base/file_descriptor_posix.h" |
12 #include "base/file_util.h" | 12 #include "base/file_util.h" |
13 #include "base/scoped_ptr.h" | |
13 #include "base/string_util.h" | 14 #include "base/string_util.h" |
15 #include "printing/metafile_factory.h" | |
14 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
15 | 17 |
16 typedef struct _cairo cairo_t; | 18 typedef struct _cairo cairo_t; |
17 | 19 |
18 class PdfPsTest : public testing::Test { | 20 class PdfPsTest : public testing::Test { |
19 protected: | 21 protected: |
20 base::FileDescriptor DevNullFD() { | 22 base::FileDescriptor DevNullFD() { |
21 return base::FileDescriptor(open("/dev/null", O_WRONLY), true); | 23 return base::FileDescriptor(open("/dev/null", O_WRONLY), true); |
22 } | 24 } |
23 }; | 25 }; |
24 | 26 |
25 TEST_F(PdfPsTest, Pdf) { | 27 TEST_F(PdfPsTest, Pdf) { |
26 // Tests in-renderer constructor. | 28 // Tests in-renderer constructor. |
27 printing::PdfPsMetafile pdf(printing::PdfPsMetafile::PDF); | 29 scoped_ptr<printing::NativeMetafile> pdf( |
vandebo (ex-Chrome)
2011/02/22 22:18:16
This is a unit test for pdf_ps_metafile, so it sho
| |
28 EXPECT_TRUE(pdf.Init()); | 30 printing::MetafileFactory::GetMetafile()); |
31 EXPECT_TRUE(pdf->Init()); | |
29 | 32 |
30 // Renders page 1. | 33 // Renders page 1. |
31 cairo_t* context = pdf.StartPage(72, 72, 1, 2, 3, 4); | 34 cairo_t* context = pdf->StartPage(72, 72, 1, 2, 3, 4); |
32 EXPECT_TRUE(context != NULL); | 35 EXPECT_TRUE(context != NULL); |
33 EXPECT_EQ(printing::PdfPsMetafile::FromCairoContext(context), &pdf); | 36 |
37 EXPECT_EQ(printing::MetafileFactory::GetMetafileFrom(context), pdf); | |
34 // In theory, we should use Cairo to draw something on |context|. | 38 // In theory, we should use Cairo to draw something on |context|. |
35 EXPECT_TRUE(pdf.FinishPage()); | 39 EXPECT_TRUE(pdf->FinishPage()); |
36 | 40 |
37 // Renders page 2. | 41 // Renders page 2. |
38 context = pdf.StartPage(64, 64, 1, 2, 3, 4); | 42 context = pdf->StartPage(64, 64, 1, 2, 3, 4); |
39 EXPECT_TRUE(context != NULL); | 43 EXPECT_TRUE(context != NULL); |
40 // In theory, we should use Cairo to draw something on |context|. | 44 // In theory, we should use Cairo to draw something on |context|. |
41 EXPECT_TRUE(pdf.FinishPage()); | 45 EXPECT_TRUE(pdf->FinishPage()); |
42 | 46 |
43 // Closes the file. | 47 // Closes the file. |
44 pdf.Close(); | 48 pdf->Close(); |
45 | 49 |
46 // Checks data size. | 50 // Checks data size. |
47 uint32 size = pdf.GetDataSize(); | 51 uint32 size = pdf->GetDataSize(); |
48 EXPECT_GT(size, 0u); | 52 EXPECT_GT(size, 0u); |
49 | 53 |
50 // Gets resulting data. | 54 // Gets resulting data. |
51 std::vector<char> buffer(size, 0x00); | 55 std::vector<char> buffer(size, 0x00); |
52 pdf.GetData(&buffer.front(), size); | 56 pdf->GetData(&buffer.front(), size); |
53 | 57 |
54 // Tests another constructor. | 58 // Tests another constructor. |
55 printing::PdfPsMetafile pdf2(printing::PdfPsMetafile::PDF); | 59 scoped_ptr<printing::NativeMetafile> pdf2( |
56 EXPECT_TRUE(pdf2.Init(&buffer.front(), size)); | 60 printing::MetafileFactory::GetMetafile()); |
61 EXPECT_TRUE(pdf2->Init(&buffer.front(), size)); | |
57 | 62 |
58 // Tries to get the first 4 characters from pdf2. | 63 // Tries to get the first 4 characters from pdf2. |
59 std::vector<char> buffer2(4, 0x00); | 64 std::vector<char> buffer2(4, 0x00); |
60 pdf2.GetData(&buffer2.front(), 4); | 65 pdf2->GetData(&buffer2.front(), 4); |
61 | 66 |
62 // Tests if the header begins with "%PDF". | 67 // Tests if the header begins with "%PDF". |
63 std::string header(&buffer2.front(), 4); | 68 std::string header(&buffer2.front(), 4); |
64 EXPECT_EQ(header.find("%PDF", 0), 0u); | 69 EXPECT_EQ(header.find("%PDF", 0), 0u); |
65 | 70 |
66 // Tests if we can save data. | 71 // Tests if we can save data. |
67 EXPECT_TRUE(pdf.SaveTo(DevNullFD())); | 72 EXPECT_TRUE(pdf->SaveTo(DevNullFD())); |
68 | 73 |
69 // Test overriding the metafile with raw data. | 74 // Test overriding the metafile with raw data. |
70 printing::PdfPsMetafile pdf3(printing::PdfPsMetafile::PDF); | 75 scoped_ptr<printing::NativeMetafile> pdf3( |
71 EXPECT_TRUE(pdf3.Init()); | 76 printing::MetafileFactory::GetMetafile()); |
72 context = pdf3.StartPage(72, 72, 1, 2, 3, 4); | 77 EXPECT_TRUE(pdf3->Init()); |
78 context = pdf3->StartPage(72, 72, 1, 2, 3, 4); | |
73 EXPECT_TRUE(context != NULL); | 79 EXPECT_TRUE(context != NULL); |
74 std::string test_raw_data = "Dummy PDF"; | 80 std::string test_raw_data = "Dummy PDF"; |
75 EXPECT_TRUE(pdf3.SetRawData(test_raw_data.c_str(), test_raw_data.size())); | 81 EXPECT_TRUE(pdf3->SetRawData(test_raw_data.c_str(), test_raw_data.size())); |
76 EXPECT_TRUE(pdf3.FinishPage()); | 82 EXPECT_TRUE(pdf3->FinishPage()); |
77 pdf3.Close(); | 83 pdf3->Close(); |
78 size = pdf3.GetDataSize(); | 84 size = pdf3->GetDataSize(); |
79 EXPECT_EQ(test_raw_data.size(), size); | 85 EXPECT_EQ(test_raw_data.size(), size); |
80 std::string output; | 86 std::string output; |
81 pdf3.GetData(WriteInto(&output, size + 1), size); | 87 pdf3->GetData(WriteInto(&output, size + 1), size); |
82 EXPECT_EQ(test_raw_data, output); | 88 EXPECT_EQ(test_raw_data, output); |
83 } | 89 } |
84 | 90 |
85 TEST_F(PdfPsTest, Ps) { | 91 TEST_F(PdfPsTest, Ps) { |
86 // Tests in-renderer constructor. | 92 // Tests in-renderer constructor. |
87 printing::PdfPsMetafile ps(printing::PdfPsMetafile::PS); | 93 printing::PdfPsMetafile ps(printing::PdfPsMetafile::PS); |
88 EXPECT_TRUE(ps.Init()); | 94 EXPECT_TRUE(ps.Init()); |
89 | 95 |
90 // Renders page 1. | 96 // Renders page 1. |
91 cairo_t* context = ps.StartPage(72, 72, 1, 2, 3, 4); | 97 cairo_t* context = ps.StartPage(72, 72, 1, 2, 3, 4); |
92 EXPECT_TRUE(context != NULL); | 98 EXPECT_TRUE(context != NULL); |
93 EXPECT_EQ(printing::PdfPsMetafile::FromCairoContext(context), &ps); | 99 EXPECT_EQ(printing::MetafileFactory::GetMetafileFrom(context), &ps); |
94 // In theory, we should use Cairo to draw something on |context|. | 100 // In theory, we should use Cairo to draw something on |context|. |
95 EXPECT_TRUE(ps.FinishPage()); | 101 EXPECT_TRUE(ps.FinishPage()); |
96 | 102 |
97 // Renders page 2. | 103 // Renders page 2. |
98 context = ps.StartPage(64, 64, 1, 2, 3, 4); | 104 context = ps.StartPage(64, 64, 1, 2, 3, 4); |
99 EXPECT_TRUE(context != NULL); | 105 EXPECT_TRUE(context != NULL); |
100 // In theory, we should use Cairo to draw something on |context|. | 106 // In theory, we should use Cairo to draw something on |context|. |
101 EXPECT_TRUE(ps.FinishPage()); | 107 EXPECT_TRUE(ps.FinishPage()); |
102 | 108 |
103 // Closes the file. | 109 // Closes the file. |
(...skipping 15 matching lines...) Expand all Loading... | |
119 std::vector<char> buffer2(4, 0x00); | 125 std::vector<char> buffer2(4, 0x00); |
120 ps2.GetData(&buffer2.front(), 4); | 126 ps2.GetData(&buffer2.front(), 4); |
121 | 127 |
122 // Tests if the header begins with "%!PS". | 128 // Tests if the header begins with "%!PS". |
123 std::string header(&buffer2.front(), 4); | 129 std::string header(&buffer2.front(), 4); |
124 EXPECT_EQ(header.find("%!PS", 0), 0u); | 130 EXPECT_EQ(header.find("%!PS", 0), 0u); |
125 | 131 |
126 // Tests if we can save data. | 132 // Tests if we can save data. |
127 EXPECT_TRUE(ps.SaveTo(DevNullFD())); | 133 EXPECT_TRUE(ps.SaveTo(DevNullFD())); |
128 } | 134 } |
OLD | NEW |