1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 
28 // MARKER(update_precomp.py): autogen include statement, do not remove
29 #include "precompiled_sal.hxx"
30 
31 //------------------------------------------------------------------------
32 // include files
33 //------------------------------------------------------------------------
34 #include <osl_Socket_Const.h>
35 
36 #include <testshl/simpleheader.hxx>
37 #include <osl/socket.hxx>
38 //------------------------------------------------------------------------
39 // helper functions
40 //------------------------------------------------------------------------
41 
42 //------------------------------------------------------------------------
43 // tests cases begins here
44 //------------------------------------------------------------------------
45 
46 namespace osl_Socket
47 {
48 
49 	class tests : public CppUnit::TestFixture
50 	{
51 	public:
52 
53 		void test_001()
54             {
55                 // _osl_getFullQualifiedDomainName( );
56                 oslSocketResult aResult;
57                 rtl::OUString suHostname = osl::SocketAddr::getLocalHostname(&aResult);
58                 CPPUNIT_ASSERT_MESSAGE("getLocalHostname failed", aResult == osl_Socket_Ok);
59             }
60 
61 		CPPUNIT_TEST_SUITE( tests );
62 		CPPUNIT_TEST( test_001 );
63 		CPPUNIT_TEST_SUITE_END();
64     };
65 
66     CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(osl_Socket::tests, "osl_SocketTest");
67 }
68 
69 
70 // -----------------------------------------------------------------------------
71 
72 // this macro creates an empty function, which will called by the RegisterAllFunctions()
73 // to let the user the possibility to also register some functions by hand.
74 
75 /*#if (defined LINUX)
76 
77 void RegisterAdditionalFunctions( FktRegFuncPtr _pFunc )
78 {
79 	// for cover lines in _osl_getFullQualifiedDomainName( )
80 	// STAR_OVERRIDE_DOMAINNAME is more an internal HACK for 5.2, which should remove from sal
81 	setenv( "STAR_OVERRIDE_DOMAINNAME", "PRC.Sun.COM", 0 );
82 }
83 
84 #else*/
85 
86 NOADDITIONAL;
87 
88 //#endif
89