~ubuntu-branches/ubuntu/wily/remuco-server/wily

« back to all changes in this revision

Viewing changes to base/module/test/testnet.py

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-03-30 00:59:36 UTC
  • Revision ID: james.westby@ubuntu.com-20090330005936-hkxki384hm0d33gj
Tags: upstream-0.8.2.1
ImportĀ upstreamĀ versionĀ 0.8.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# =============================================================================
 
2
#
 
3
#    Remuco - A remote control system for media players.
 
4
#    Copyright (C) 2006-2009 Oben Sonne <obensonne@googlemail.com>
 
5
#
 
6
#    This file is part of Remuco.
 
7
#
 
8
#    Remuco is free software: you can redistribute it and/or modify
 
9
#    it under the terms of the GNU General Public License as published by
 
10
#    the Free Software Foundation, either version 3 of the License, or
 
11
#    (at your option) any later version.
 
12
#
 
13
#    Remuco is distributed in the hope that it will be useful,
 
14
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#    GNU General Public License for more details.
 
17
#
 
18
#    You should have received a copy of the GNU General Public License
 
19
#    along with Remuco.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
# =============================================================================
 
22
 
 
23
import unittest
 
24
 
 
25
import gobject
 
26
 
 
27
from remuco.data import PlayerInfo
 
28
from remuco.net import WifiServer, BluetoothServer
 
29
from remuco.config import Config
 
30
 
 
31
 
 
32
class ServerTest(unittest.TestCase):
 
33
 
 
34
    def setUp(self):
 
35
        
 
36
        self.__ml = gobject.MainLoop()
 
37
        self.__pi = PlayerInfo("xxx", 0, 0, None)
 
38
        self.__config = Config("unittest")
 
39
 
 
40
    def test_wifi(self):
 
41
        
 
42
        s = WifiServer([], self.__pi, None, self.__config)
 
43
        
 
44
        gobject.timeout_add(2000, self.__stop, s)
 
45
        
 
46
        self.__ml.run()
 
47
 
 
48
    def test_bluetooth(self):
 
49
        
 
50
        s = BluetoothServer([], self.__pi, None, self.__config)
 
51
        
 
52
        gobject.timeout_add(2000, self.__stop, s)
 
53
        
 
54
        self.__ml.run()
 
55
 
 
56
    def __stop(self, s):
 
57
        
 
58
        s.down()
 
59
        self.__ml.quit()
 
60
        
 
61
if __name__ == "__main__":
 
62
    
 
63
    unittest.main()
 
 
b'\\ No newline at end of file'