1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: AntiEnvGuard.test.cxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
33 #include "cppu/EnvGuards.hxx"
34 #include "uno/environment.hxx"
39 using namespace com::sun::star
;
41 static rtl::OUString s_message
;
44 static void s_test__ctor(void)
46 s_message
+= rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("\ts_test__ctor"));
48 rtl::OUString
ref(RTL_CONSTASCII_USTRINGPARAM("uno"));
50 rtl::OUString current_EnvDcp
;
52 cppu::EnvGuard
envGuard(uno::Environment(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("uno:unsafe")), NULL
));
55 cppu::AntiEnvGuard antiGuard
;
57 current_EnvDcp
= uno::Environment::getCurrent(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(UNO_LB_UNO
))).getTypeName();
61 if (current_EnvDcp
== ref
)
62 s_message
+= rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("\n"));
66 s_message
+= rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(" - FAILURE\n"));
67 s_message
+= rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("\t got: \""));
68 s_message
+= current_EnvDcp
;
69 s_message
+= rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("\"\n"));
70 s_message
+= rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("\t expected: \""));
72 s_message
+= rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("\"\n"));
76 static void s_test__dtor(void)
78 s_message
+= rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("\ts_test__dtor"));
80 rtl::OUString
ref(RTL_CONSTASCII_USTRINGPARAM("uno:unsafe"));
82 rtl::OUString current_EnvDcp
;
84 cppu::EnvGuard
envGuard(uno::Environment(ref
, NULL
));
87 cppu::AntiEnvGuard antiGuard
;
89 current_EnvDcp
= uno::Environment::getCurrent(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(UNO_LB_UNO
))).getTypeName();
93 if (current_EnvDcp
== ref
)
94 s_message
+= rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("\n"));
98 s_message
+= rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(" - FAILURE\n"));
99 s_message
+= rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("\t got: \""));
100 s_message
+= current_EnvDcp
;
101 s_message
+= rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("\"\n"));
102 s_message
+= rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("\t expected: \""));
104 s_message
+= rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("\"\n"));
110 SAL_IMPLEMENT_MAIN_WITH_ARGS(/*argc*/, argv
)
116 if (s_message
.indexOf(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("FAILURE"))) == -1)
118 s_message
+= rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("TESTS PASSED\n"));
123 s_message
+= rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("TESTS _NOT_ PASSED\n"));
130 << rtl::OUStringToOString(s_message
, RTL_TEXTENCODING_ASCII_US
).getStr()