974b4dc0cfd9d069b72a9b944630760049876aed
[0release.git] / tests / testrelease.py
blob974b4dc0cfd9d069b72a9b944630760049876aed
1 #!/usr/bin/env python
2 # Copyright (C) 2007, Thomas Leonard
3 # See the README file for details, or visit http://0install.net.
4 import sys, os, shutil, tempfile, subprocess
5 import unittest
6 from zeroinstall.injector import model, qdom
8 sys.path.insert(0, '..')
10 import support
12 mydir = os.path.realpath(os.path.dirname(__file__))
13 release_feed = mydir + '/../0release.xml'
14 test_repo = mydir + '/test-repo.tgz'
15 test_repo_actions = mydir + '/test-repo-actions.tgz'
16 test_repo_c = mydir + '/c-prog.tgz'
17 test_gpg = mydir + '/gpg.tgz'
19 test_config = """
20 [global]
21 freshness = 0
22 auto_approve_keys = True
23 help_with_testing = True
24 network_use = full
25 """
27 def call_with_output_suppressed(cmd, stdin, expect_failure = False, **kwargs):
28 #cmd = [cmd[0], '-v'] + cmd[1:]
29 if stdin:
30 child = subprocess.Popen(cmd, stdin = subprocess.PIPE, stdout = subprocess.PIPE, **kwargs)
31 else:
32 child = subprocess.Popen(cmd, stdout = subprocess.PIPE, **kwargs)
33 stdout, stderr = child.communicate(stdin)
34 if (child.returncode != 0) == expect_failure:
35 return stdout, stderr
36 #print stdout, stderr
37 raise Exception("Return code %d from %s\nstdout: %s\nstderr: %s" % (child.returncode, cmd, stdout, stderr))
39 def make_releases_dir(src_feed = '../hello/HelloWorld.xml', auto_upload = False):
40 os.chdir('releases')
41 call_with_output_suppressed(['0launch', release_feed, src_feed], None)
42 assert os.path.isfile('make-release')
44 lines = file('make-release').readlines()
45 lines[lines.index('ARCHIVE_DIR_PUBLIC_URL=\n')] = 'ARCHIVE_DIR_PUBLIC_URL=http://TESTING/releases\n'
47 if auto_upload:
48 os.mkdir('archives')
49 lines[lines.index('ARCHIVE_UPLOAD_COMMAND=\n')] = 'ARCHIVE_UPLOAD_COMMAND=\'cp "$@" ../archives/\'\n'
51 s = file('make-release', 'w')
52 s.write(''.join(lines))
53 s.close()
55 class TestRelease(unittest.TestCase):
56 def setUp(self):
57 self.tmp = tempfile.mkdtemp(prefix = '0release-')
58 os.chdir(self.tmp)
59 support.check_call(['tar', 'xzf', test_gpg])
60 os.mkdir('releases')
61 os.environ['GNUPGHOME'] = self.tmp + '/gpg'
62 os.chmod(os.environ['GNUPGHOME'], 0700)
64 config_dir = os.path.join(self.tmp, 'config')
65 injector_config = os.path.join(config_dir, '0install.net', 'injector')
66 os.makedirs(injector_config)
67 s = open(os.path.join(injector_config, 'global'), 'w')
68 s.write(test_config)
69 s.close()
70 os.environ['XDG_CONFIG_HOME'] = config_dir
72 def tearDown(self):
73 os.chdir(mydir)
74 shutil.rmtree(self.tmp)
76 def testSimple(self):
77 support.check_call(['tar', 'xzf', test_repo])
78 make_releases_dir()
80 call_with_output_suppressed(['./make-release', '-k', 'Testing'], '\nP\n\n')
82 call_with_output_suppressed(['./make-release', '-k', 'Testing'], '\nP\nY\n\n')
84 assert 'Prints "Hello World"' in file('0.1/changelog-0.1').read()
85 assert 'Prints "Hello World"' not in file('0.2/changelog-0.2').read()
87 def testUncommitted(self):
88 support.check_call(['tar', 'xzf', test_repo_actions])
89 make_releases_dir()
91 unused, stderr = call_with_output_suppressed(['./make-release', '-k', 'Testing'], None,
92 expect_failure = True, stderr = subprocess.PIPE)
93 assert "Uncommitted changes!" in stderr
95 def testActions(self):
96 support.check_call(['tar', 'xzf', test_repo_actions])
97 os.chdir('hello')
98 support.check_call(['git', 'commit', '-a', '-m', 'Added release instructions'], stdout = subprocess.PIPE)
99 os.chdir('..')
100 make_releases_dir()
102 assert "version = '0.2'\n" not in file('../hello/hello.py').read()
104 child = subprocess.Popen(['./make-release', '-k', 'Testing'], stdin = subprocess.PIPE, stdout = subprocess.PIPE)
105 unused, unused = child.communicate('\nP\n\n')
106 assert child.returncode == 0
108 assert "version = '0.2'\n" in file('../hello/hello.py').read()
110 def testBinaryRelease(self):
111 support.check_call(['tar', 'xzf', test_repo_c])
112 make_releases_dir(src_feed = '../c-prog/c-prog.xml', auto_upload = True)
114 call_with_output_suppressed(['./make-release', '-k', 'Testing', '--builders=host'], '\nP\n\n')
116 feed = model.ZeroInstallFeed(qdom.parse(file('HelloWorld-in-C.xml')))
118 assert len(feed.implementations) == 2
119 src_impl, = [x for x in feed.implementations.values() if x.arch == '*-src']
120 host_impl, = [x for x in feed.implementations.values() if x.arch != '*-src']
122 assert src_impl.main == None
123 assert host_impl.main == 'hello'
125 archives = os.listdir('archives')
126 assert os.path.basename(src_impl.download_sources[0].url) in archives
128 host_download = host_impl.download_sources[0]
129 host_archive = os.path.basename(host_download.url)
130 assert host_archive in archives
131 support.check_call(['tar', 'xjf', os.path.join('archives', host_archive)])
132 c = subprocess.Popen(['0launch', os.path.join(host_download.extract, '0install', 'helloworld-in-c-1.1.xml')], stdout = subprocess.PIPE)
133 output, _ = c.communicate()
135 self.assertEquals("Hello from C! (version 1.1)\n", output)
138 suite = unittest.makeSuite(TestRelease)
139 if __name__ == '__main__':
140 unittest.main()