summaryrefslogtreecommitdiff
path: root/chromium/printing/printing_test.h
diff options
context:
space:
mode:
authorZeno Albisser <zeno.albisser@digia.com>2013-08-15 21:46:11 +0200
committerZeno Albisser <zeno.albisser@digia.com>2013-08-15 21:46:11 +0200
commit679147eead574d186ebf3069647b4c23e8ccace6 (patch)
treefc247a0ac8ff119f7c8550879ebb6d3dd8d1ff69 /chromium/printing/printing_test.h
downloadqtwebengine-chromium-679147eead574d186ebf3069647b4c23e8ccace6.tar.gz
Initial import.
Diffstat (limited to 'chromium/printing/printing_test.h')
-rw-r--r--chromium/printing/printing_test.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/chromium/printing/printing_test.h b/chromium/printing/printing_test.h
new file mode 100644
index 00000000000..35b91697a0a
--- /dev/null
+++ b/chromium/printing/printing_test.h
@@ -0,0 +1,40 @@
+// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_PRINTING_PRINTING_TEST_H__
+#define CHROME_BROWSER_PRINTING_PRINTING_TEST_H__
+
+#include <windows.h>
+#include <winspool.h>
+
+#include <string>
+
+#include "base/basictypes.h"
+
+// Disable the whole test case when executing on a computer that has no printer
+// installed.
+// Note: Parent should be testing::Test or InProcessBrowserTest.
+template<typename Parent>
+class PrintingTest : public Parent {
+ public:
+ static bool IsTestCaseDisabled() {
+ return GetDefaultPrinter().empty();
+ }
+ static std::wstring GetDefaultPrinter() {
+ wchar_t printer_name[MAX_PATH];
+ DWORD size = arraysize(printer_name);
+ BOOL result = ::GetDefaultPrinter(printer_name, &size);
+ if (result == 0) {
+ if (GetLastError() == ERROR_FILE_NOT_FOUND) {
+ printf("There is no printer installed, printing can't be tested!\n");
+ return std::wstring();
+ }
+ printf("INTERNAL PRINTER ERROR!\n");
+ return std::wstring();
+ }
+ return printer_name;
+ }
+};
+
+#endif // CHROME_BROWSER_PRINTING_PRINTING_TEST_H__