Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : */
9 :
10 : #include <sal/config.h>
11 : #include <test/bootstrapfixture.hxx>
12 : #include <test/unoapi_test.hxx>
13 : #include <rtl/strbuf.hxx>
14 : #include <osl/file.hxx>
15 : #include <com/sun/star/frame/Desktop.hpp>
16 : #include <com/sun/star/lang/XComponent.hpp>
17 : #include <com/sun/star/frame/XStorable.hpp>
18 : #include <com/sun/star/document/XEmbeddedScripts.hpp>
19 : #include <com/sun/star/script/XStorageBasedLibraryContainer.hpp>
20 : #include <com/sun/star/script/XLibraryContainer.hpp>
21 : #include <com/sun/star/util/XModifiable.hpp>
22 : #include <com/sun/star/container/XHierarchicalNameAccess.hpp>
23 : #include <com/sun/star/io/XStream.hpp>
24 : #include <com/sun/star/io/XInputStream.hpp>
25 :
26 : #include <sfx2/app.hxx>
27 : #include <sfx2/docfilt.hxx>
28 : #include <sfx2/docfile.hxx>
29 : #include <sfx2/objsh.hxx>
30 : #include <sfx2/sfxmodelfactory.hxx>
31 : #include <svl/intitem.hxx>
32 : #include <comphelper/processfactory.hxx>
33 :
34 : #include <basic/sbxdef.hxx>
35 :
36 : using namespace ::com::sun::star;
37 : using namespace ::com::sun::star::uno;
38 :
39 :
40 2 : class DialogSaveTest : public UnoApiTest
41 : {
42 : public:
43 : DialogSaveTest();
44 :
45 : void test();
46 :
47 2 : CPPUNIT_TEST_SUITE(DialogSaveTest);
48 : // Should we disable this test on MOX and WNT?
49 : // #if !defined(MACOSX) && !defined(WNT)
50 1 : CPPUNIT_TEST(test);
51 : // #endif
52 5 : CPPUNIT_TEST_SUITE_END();
53 :
54 : };
55 :
56 :
57 1 : DialogSaveTest::DialogSaveTest()
58 1 : : UnoApiTest("/dbaccess/qa/extras/testdocuments")
59 : {
60 1 : }
61 :
62 1 : void DialogSaveTest::test()
63 : {
64 : // UnoApiTest::setUp (via InitVCL) puts each test under a locked SolarMutex,
65 : // but at least the below xDocCloseable->close call could lead to a deadlock
66 : // then, and it looks like none of the code here requires the SolarMutex to
67 : // be locked anyway:
68 1 : SolarMutexReleaser rel;
69 :
70 2 : const OUString sStandard("Standard");
71 2 : const OUString aFileName(getURLFromWorkdir("CppunitTest/testEmptyStdlibSave.odb"));
72 : {
73 1 : uno::Reference< lang::XComponent > xComponent = loadFromDesktop(aFileName);
74 1 : CPPUNIT_ASSERT(xComponent.is());
75 2 : uno::Reference< frame::XStorable > xDocStorable(xComponent, UNO_QUERY_THROW);
76 1 : CPPUNIT_ASSERT(xDocStorable.is());
77 2 : uno::Reference< document::XEmbeddedScripts > xDocScr(xComponent, UNO_QUERY_THROW);
78 1 : CPPUNIT_ASSERT(xDocScr.is());
79 2 : uno::Reference< script::XStorageBasedLibraryContainer > xStorBasLib(xDocScr->getBasicLibraries());
80 1 : CPPUNIT_ASSERT(xStorBasLib.is());
81 2 : uno::Reference< script::XLibraryContainer > xBasLib(xStorBasLib, UNO_QUERY_THROW);
82 1 : CPPUNIT_ASSERT(xBasLib.is());
83 2 : uno::Reference< script::XStorageBasedLibraryContainer > xStorDlgLib(xDocScr->getDialogLibraries());
84 1 : CPPUNIT_ASSERT(xStorDlgLib.is());
85 2 : uno::Reference< script::XLibraryContainer > xDlgLib(xStorDlgLib, UNO_QUERY_THROW);
86 1 : CPPUNIT_ASSERT(xDlgLib.is());
87 1 : xBasLib->loadLibrary(sStandard);
88 1 : xDlgLib->loadLibrary(sStandard);
89 1 : CPPUNIT_ASSERT(xBasLib->isLibraryLoaded(sStandard));
90 1 : CPPUNIT_ASSERT(xDlgLib->isLibraryLoaded(sStandard));
91 :
92 2 : Any a;
93 2 : uno::Reference< container::XNameContainer > xI;
94 :
95 1 : a = xBasLib->getByName(sStandard);
96 1 : a >>= xI;
97 1 : CPPUNIT_ASSERT(xI.is());
98 1 : xI->removeByName("Raralix");
99 :
100 1 : a = xDlgLib->getByName(sStandard);
101 1 : a >>= xI;
102 1 : CPPUNIT_ASSERT(xI.is());
103 1 : xI->removeByName("Dialog1");
104 :
105 : // uno::Reference< util::XModifiable > xDlgMod(xDlgLib, UNO_QUERY_THROW);
106 : // CPPUNIT_ASSERT(xDlgMod.is());
107 : // xDlgMod->setModified(sal_True);
108 :
109 : // uno::Reference< util::XModifiable > xScrMod(xDocScr, UNO_QUERY_THROW);
110 : // CPPUNIT_ASSERT(xScrMod.is());
111 : // xScrMod->setModified(sal_True);
112 :
113 : // uno::Reference< util::XModifiable > xDocMod(xComponent, UNO_QUERY_THROW);
114 : // CPPUNIT_ASSERT(xDocMod.is());
115 : // std::cerr << "** Modified: " << static_cast<bool>(xDocMod->isModified()) << std::endl;
116 : // xDocMod->setModified(sal_True);
117 : // std::cerr << "** Modified: " << static_cast<bool>(xDocMod->isModified()) << std::endl;
118 : // CPPUNIT_ASSERT(xDocMod->isModified());
119 :
120 : // now save; the code path to exercise in this test is the "store to same location"
121 : // do *not* change to store(As|To|URL)!
122 1 : xDocStorable->store();
123 :
124 : // close
125 2 : uno::Reference< util::XCloseable > xDocCloseable(xComponent, UNO_QUERY_THROW);
126 1 : CPPUNIT_ASSERT(xDocCloseable.is());
127 2 : xDocCloseable->close(false);
128 :
129 : // All our uno::References are (should?) be invalid now -> let them go out of scope
130 : }
131 : {
132 1 : uno::Sequence<uno::Any> args(1);
133 1 : args[0] <<= aFileName;
134 2 : Reference<container::XHierarchicalNameAccess> xHNA(getMultiServiceFactory()->createInstanceWithArguments("com.sun.star.packages.Package", args), UNO_QUERY_THROW);
135 1 : CPPUNIT_ASSERT(xHNA.is());
136 1 : CPPUNIT_ASSERT(!xHNA->hasByHierarchicalName("Basic/Standard"));
137 2 : CPPUNIT_ASSERT(!xHNA->hasByHierarchicalName("Dialogs/Standard"));
138 1 : }
139 1 : }
140 :
141 1 : CPPUNIT_TEST_SUITE_REGISTRATION(DialogSaveTest);
142 :
143 4 : CPPUNIT_PLUGIN_IMPLEMENT();
144 :
145 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|