Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/units/node/obs.py
blob: bf43ed6ac5f68d427d6a2449058d556d50a3dea5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
#!/usr/bin/env python
# sugar-lint: disable

import json
from cStringIO import StringIO

from __init__ import tests

from sugar_network import node
from sugar_network.toolkit import http
from sugar_network.node import obs


class ObsTest(tests.Test):

    def setUp(self):
        tests.Test.setUp(self)
        obs._repos = {}

    def test_get_repos(self):
        self.override(http, 'Connection', Client(self, [
            (('GET', ['build', 'base']), {'allowed': (400, 404)}, [
                '<directory>',
                '   <entry name="Debian-6.0" />',
                '   <entry name="Fedora-11" />',
                '</directory>',
                ]),
            (('GET', ['build', 'base', 'Debian-6.0']), {'allowed': (400, 404)}, [
                '<directory>',
                '   <entry name="i586" />',
                '   <entry name="x86_64" />',
                '</directory>',
                ]),
            (('GET', ['build', 'base', 'Fedora-11']), {'allowed': (400, 404)}, [
                '<directory>',
                '   <entry name="i586" />',
                '</directory>',
                ]),
            ]))

        self.assertEqual([
            {'distributor_id': 'Debian', 'name': 'Debian-6.0', 'arches': ['i586', 'x86_64']},
            {'distributor_id': 'Fedora', 'name': 'Fedora-11', 'arches': ['i586']},
            ],
            obs.get_repos())

    def test_resolve(self):
        self.override(http, 'Connection', Client(self, [
            (('GET', ['resolve']),
                {'allowed': (400, 404), 'params': {
                    'project': 'base',
                    'repository': 'repo',
                    'arch': 'arch',
                    'package': 'pkg1',
                    }},
                [   '<resolve>',
                    '   <binary name="pygame" url="http://pkg1.prm" arch="arch"/>',
                    '</resolve>',
                    ],
                ),
            (('GET', ['resolve']),
                {'allowed': (400, 404), 'params': {
                    'project': 'base',
                    'repository': 'repo',
                    'arch': 'arch',
                    'package': 'pkg2',
                    }},
                [   '<resolve>',
                    '   <binary name="pygame" url="http://pkg2.prm" arch="arch"/>',
                    '</resolve>',
                    ],
                ),
            ]))

        obs.resolve('repo', 'arch', ['pkg1', 'pkg2'])

    def test_presolve(self):
        self.override(http, 'Connection', lambda *args: Client(self, [
            (('GET', ['build', 'presolve']), {'allowed': (400, 404)}, [
                '<directory>',
                '   <entry name="OLPC-11.3.1" />',
                '</directory>',
                ]),
            (('GET', ['build', 'presolve', 'OLPC-11.3.1']), {'allowed': (400, 404)}, [
                '<directory>',
                '   <entry name="i586" />',
                '</directory>',
                ]),
            (('GET', ['resolve']),
                {'allowed': (400, 404), 'params': {
                    'project': 'presolve',
                    'repository': 'OLPC-11.3.1',
                    'arch': 'i586',
                    'package': 'pkg1',
                    'withdeps': '1',
                    'exclude': 'sweets-sugar',
                    }},
                [   '<resolve>',
                    '   <binary name="pkg1-1" url="http://pkg1-1.prm" arch="arch"/>',
                    '   <binary name="pkg1-2" url="http://pkg1-2.prm" arch="arch"/>',
                    '</resolve>',
                    ],
                ),
            (('GET', ['resolve']),
                {'allowed': (400, 404), 'params': {
                    'project': 'presolve',
                    'repository': 'OLPC-11.3.1',
                    'arch': 'i586',
                    'package': 'pkg2',
                    'withdeps': '1',
                    'exclude': 'sweets-sugar',
                    }},
                [   '<resolve>',
                    '   <binary name="pkg2-1" url="http://pkg2-1.prm" arch="arch"/>',
                    '   <binary name="pkg2-2" url="http://pkg2-2.prm" arch="arch"/>',
                    '</resolve>',
                    ],
                ),
            ('http://pkg1-1.prm', ['1']),
            ('http://pkg1-2.prm', ['2']),
            ('http://pkg2-1.prm', ['3']),
            ('http://pkg2-2.prm', ['4']),
            ]))

        obs.presolve({
            'Debian': {'binary': [['deb']]},
            'Fedora': {'binary': [['pkg1', 'pkg2']], 'devel': [['pkg3']]},
            }, '.')

        self.assertEqual({
            'arch': [
                {'path': 'pkg1-1.prm', 'name': 'pkg1-1'},
                {'path': 'pkg1-2.prm', 'name': 'pkg1-2'},
                ],
            },
            json.load(file('packages/presolve/OLPC-11.3.1/pkg1')))
        self.assertEqual({
            'arch': [
                {'path': 'pkg2-1.prm', 'name': 'pkg2-1'},
                {'path': 'pkg2-2.prm', 'name': 'pkg2-2'},
                ],
            },
            json.load(file('packages/presolve/OLPC-11.3.1/pkg2')))
        self.assertEqual('1', file('packages/presolve/OLPC-11.3.1/pkg1-1.prm').read())
        self.assertEqual('2', file('packages/presolve/OLPC-11.3.1/pkg1-2.prm').read())
        self.assertEqual('3', file('packages/presolve/OLPC-11.3.1/pkg2-1.prm').read())
        self.assertEqual('4', file('packages/presolve/OLPC-11.3.1/pkg2-2.prm').read())


class Response(object):

    headers = {'Content-Type': 'text/xml'}
    content = None
    status_code = 200


class Client(object):

    def __init__(self, test, calls):
        self.test = test
        self.calls = calls[:]

    def request(self, *args, **kwargs):
        assert self.calls
        args_, kwargs_, reply = self.calls.pop(0)
        self.test.assertEqual((args_, kwargs_), (args, kwargs))
        response = Response()
        response.content = ''.join(reply)
        return response

    def download(self, path, dst):
        assert self.calls
        path_, reply = self.calls.pop(0)
        self.test.assertEqual(path_, path)
        if isinstance(dst, basestring):
            with file(dst, 'wb') as f:
                f.write(''.join(reply))
        else:
            dst.write(''.join(reply))

    def __call__(self, url):
        return self


if __name__ == '__main__':
    tests.main()