summaryrefslogtreecommitdiffstats
path: root/test/Perforce/Perforce.py
blob: 0133ced1813cf9d2231faa672b43845dd66e157f (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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
#!/usr/bin/env python
#
# __COPYRIGHT__
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#

__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"

"""
Test fetching source files from Perforce.

This test requires that a Perforce server be running on the test system
on port 1666, as well as that of course a client must be present.
"""

import os
import string

import TestSCons

class TestPerforce(TestSCons.TestSCons):
    def __init__(self, *args, **kw):
        apply(TestSCons.TestSCons.__init__, (self,)+args, kw)

        self.p4path = self.where_is('p4')
        if not self.p4path:
            self.skip_test("Could not find 'p4'; skipping test(s).\n")

        #import socket
        #self.host = socket.gethostname()
        self.host = '127.0.0.1'

        self.user = os.environ.get('USER')
        if not self.user:
            self.user = os.environ.get('USERNAME')
        if not self.user:
            self.user = os.environ.get('P4USER')

        self.depot = 'testme'

        self.p4d = self.where_is('p4d')
        if self.p4d:
            self.p4portflags = ['-p', self.host + ':1777']
            self.subdir('depot', ['depot', 'testme'])
            def quote_space(a):
                if ' ' in a:
                    a = '"%s"' % a
                return a
            args = map(quote_space, [self.p4d, '-q', '-d'] + \
                                    self.p4portflags + \
                                    ['-J', 'Journal',
                                     '-L', 'Log',
                                     '-r', self.workpath('depot')])

            # We don't use self.run() because the TestCmd logic will hang
            # waiting for the daemon to exit, even when we pass it
            # the -d option.
            try:
                spawnv = os.spawnv
            except AttributeError:
                os.system(string.join(args))
            else:
                spawnv(os.P_NOWAIT, self.p4d, args)
                self.sleep(2)
        else:
            self.p4portflags = ['-p', self.host + ':1666']
            try:
                self.p4('obliterate -y //%s/...' % self.depot)
                self.p4('depot -d %s' % self.depot)
            except TestSCons.TestFailed:
                # It's okay if this fails.  It will fail if the depot
                # is already clear.
                pass

        self.portflag = string.join(self.p4portflags)

    def p4(self, *args, **kw):
        try:
            arguments = kw['arguments']
        except KeyError:
            arguments = args[0]
            args = args[1:]
        kw['arguments'] = string.join(self.p4portflags + [arguments])
        kw['program'] = self.p4path
        return apply(self.run, args, kw)

    def substitute(self, s, **kw):
        kw = kw.copy()
        kw.update(self.__dict__)
        return s % kw

    def cleanup(self, condition = None):
        if self.p4d:
            self.p4('admin stop')
            self.p4d = None

        if TestSCons:
            TestSCons.TestSCons.cleanup(self, condition)

test = TestPerforce()

# Set up a perforce depot for testing.
depotspec = test.substitute("""\
# A Perforce Depot Specification.
Depot:  %(depot)s

Owner:  %(user)s

Date:   2003/02/19 17:21:41

Description:
        A test depot.

Type:   local

Address:        subdir

Map:    %(depot)s/...
""")

test.p4(arguments='depot -i', stdin = depotspec)

# Now set up 2 clients, one to check in some files, and one to
# do the building.
clientspec = """\
# A Perforce Client Specification.
Client: %(client)s

Owner:  %(user)s

Description:
        Created by %(user)s.

Root:   %(root)s

Options:        noallwrite noclobber nocompress unlocked nomodtime normdir

LineEnd:        local

View:
        //%(depot)s/%(subdir)s... //%(client)s/...
"""

clientspec1 = test.substitute(clientspec,
                              client = 'testclient1',
                              root = test.workpath('import'),
                              subdir = 'foo/',
                              )

clientspec2 = test.substitute(clientspec,
                              client = 'testclient2',
                              root = test.workpath('work'),
                              subdir = '',
                              )

test.subdir('import', ['import', 'sub'], 'work')

test.p4('client -i', stdin=clientspec1)
test.p4('client -i', stdin=clientspec2)

test.write(['import', 'aaa.in'], "import/aaa.in\n")
test.write(['import', 'bbb.in'], "import/bbb.in\n")
test.write(['import', 'ccc.in'], "import/ccc.in\n")

test.write(['import', 'sub', 'SConscript'], """
Import("env")
env.Cat('ddd.out', 'ddd.in')
env.Cat('eee.out', 'eee.in')
env.Cat('fff.out', 'fff.in')
env.Cat('all', ['ddd.out', 'eee.out', 'fff.out'])
""")

test.write(['import', 'sub', 'ddd.in'], "import/sub/ddd.in\n")
test.write(['import', 'sub', 'eee.in'], "import/sub/eee.in\n")
test.write(['import', 'sub', 'fff.in'], "import/sub/fff.in\n")

# Perforce uses the PWD environment variable in preference to the actual cwd
os.environ["PWD"] = test.workpath('import')
paths = [ 'aaa.in', 'bbb.in', 'ccc.in',
          'sub/ddd.in', 'sub/eee.in', 'sub/fff.in', 'sub/SConscript' ]
paths = map(os.path.normpath, paths)
args = '-c testclient1 add -t binary %s' % string.join(paths)
test.p4(args, chdir='import')

changespec = test.substitute("""
Change: new

Client: testclient1

User:   %(user)s

Status: new

Description:
        A test check in

Files:
        //%(depot)s/foo/aaa.in  # add
        //%(depot)s/foo/bbb.in  # add
        //%(depot)s/foo/ccc.in  # add
        //%(depot)s/foo/sub/SConscript  # add
        //%(depot)s/foo/sub/ddd.in      # add
        //%(depot)s/foo/sub/eee.in      # add
        //%(depot)s/foo/sub/fff.in      # add
""")

test.p4('-c testclient1 opened')
test.p4('-c testclient1 submit -i', stdin=changespec)

SConstruct_contents = test.substitute("""
def cat(env, source, target):
    target = str(target[0])
    source = map(str, source)
    f = open(target, "wb")
    for src in source:
        f.write(open(src, "rb").read())
    f.close()
env = Environment(tools = ['default', 'Perforce'],
                  BUILDERS={'Cat':Builder(action=cat)},
                  P4=r'%(p4path)s',
                  P4FLAGS='%(portflag)s -c testclient2')
env.Cat('aaa.out', 'foo/aaa.in')
env.Cat('bbb.out', 'foo/bbb.in')
env.Cat('ccc.out', 'foo/ccc.in')
env.Cat('all', ['aaa.out', 'bbb.out', 'ccc.out'])
env.SourceCode('.', env.Perforce())
SConscript('foo/sub/SConscript', 'env')
""")

test.write(['work', 'SConstruct'], SConstruct_contents)

test.subdir(['work', 'foo'])
test.write(['work', 'foo', 'bbb.in'], "work/foo/bbb.in\n")

test.subdir(['work', 'foo', 'sub'])
test.write(['work', 'foo', 'sub', 'eee.in'], "work/foo/sub/eee.in\n")

test.run(chdir = 'work', arguments = '.')

test.fail_test(test.read(['work', 'all']) != "import/aaa.in\nwork/foo/bbb.in\nimport/ccc.in\n")
test.fail_test(test.read(['work', 'foo', 'sub', 'all']) != "import/sub/ddd.in\nwork/foo/sub/eee.in\nimport/sub/fff.in\n")

test.pass_test()