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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
|
# Copyright 2009-2010 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
"""Test Archive features."""
from datetime import (
date,
datetime,
timedelta,
)
import doctest
from testtools.matchers import (
DocTestMatches,
MatchesRegex,
)
from testtools.testcase import ExpectedException
import transaction
from zope.component import getUtility
from zope.security.interfaces import Unauthorized
from zope.security.proxy import removeSecurityProxy
from canonical.database.sqlbase import sqlvalues
from canonical.launchpad.webapp.interfaces import (
DEFAULT_FLAVOR,
IStoreSelector,
MAIN_STORE,
)
from canonical.testing.layers import (
DatabaseFunctionalLayer,
LaunchpadZopelessLayer,
)
from lp.app.errors import NotFoundError
from lp.app.interfaces.launchpad import ILaunchpadCelebrities
from lp.buildmaster.enums import BuildStatus
from lp.registry.interfaces.person import (
IPersonSet,
TeamSubscriptionPolicy,
)
from lp.registry.interfaces.pocket import PackagePublishingPocket
from lp.registry.interfaces.series import SeriesStatus
from lp.services.features.testing import FeatureFixture
from lp.services.job.interfaces.job import JobStatus
from lp.services.propertycache import clear_property_cache
from lp.services.worlddata.interfaces.country import ICountrySet
from lp.soyuz.adapters.archivedependencies import (
get_sources_list_for_building,
)
from lp.soyuz.enums import (
ArchivePermissionType,
ArchivePurpose,
ArchiveStatus,
PackageCopyPolicy,
PackagePublishingStatus,
)
from lp.soyuz.interfaces.archive import (
ArchiveDependencyError,
ArchiveDisabled,
CannotCopy,
CannotRestrictArchitectures,
CannotUploadToPocket,
CannotUploadToPPA,
ForbiddenByFeatureFlag,
IArchiveSet,
InsufficientUploadRights,
InvalidPocketForPartnerArchive,
InvalidPocketForPPA,
NoRightsForArchive,
NoRightsForComponent,
VersionRequiresName,
)
from lp.soyuz.interfaces.archivearch import IArchiveArchSet
from lp.soyuz.interfaces.archivepermission import IArchivePermissionSet
from lp.soyuz.interfaces.binarypackagename import IBinaryPackageNameSet
from lp.soyuz.interfaces.component import IComponentSet
from lp.soyuz.interfaces.packagecopyjob import IPlainPackageCopyJobSource
from lp.soyuz.interfaces.processor import IProcessorFamilySet
from lp.soyuz.model.archive import Archive
from lp.soyuz.model.archivepermission import ArchivePermission
from lp.soyuz.model.binarypackagerelease import (
BinaryPackageReleaseDownloadCount,
)
from lp.soyuz.model.component import ComponentSelection
from lp.soyuz.tests.test_publishing import SoyuzTestPublisher
from lp.testing import (
ANONYMOUS,
celebrity_logged_in,
login,
login_person,
person_logged_in,
TestCaseWithFactory,
)
from lp.testing.sampledata import COMMERCIAL_ADMIN_EMAIL
class TestGetPublicationsInArchive(TestCaseWithFactory):
layer = DatabaseFunctionalLayer
def makeArchivesForOneDistribution(self, count=3):
distribution = self.factory.makeDistribution()
archives = []
for i in range(count):
archives.append(
self.factory.makeArchive(distribution=distribution))
return archives
def makeArchivesWithPublications(self, count=3):
archives = self.makeArchivesForOneDistribution(count=count)
sourcepackagename = self.factory.makeSourcePackageName()
for archive in archives:
self.factory.makeSourcePackagePublishingHistory(
sourcepackagename=sourcepackagename, archive=archive,
status=PackagePublishingStatus.PUBLISHED,
)
return archives, sourcepackagename
def getPublications(self, sourcepackagename, archives, distribution):
return getUtility(IArchiveSet).getPublicationsInArchives(
sourcepackagename, archives, distribution=distribution)
def test_getPublications_returns_all_published_publications(self):
# Returns all currently published publications for archives
archives, sourcepackagename = self.makeArchivesWithPublications()
results = self.getPublications(
sourcepackagename, archives, archives[0].distribution)
num_results = results.count()
self.assertEquals(3, num_results)
def test_getPublications_empty_list_of_archives(self):
# Passing an empty list of archives will result in an empty
# resultset.
archives, sourcepackagename = self.makeArchivesWithPublications()
results = self.getPublications(
sourcepackagename, [], archives[0].distribution)
self.assertEquals([], list(results))
def assertPublicationsFromArchives(self, publications, archives):
self.assertEquals(len(archives), publications.count())
for publication, archive in zip(publications, archives):
self.assertEquals(archive, publication.archive)
def test_getPublications_returns_only_for_given_archives(self):
# Returns only publications for the specified archives
archives, sourcepackagename = self.makeArchivesWithPublications()
results = self.getPublications(
sourcepackagename, [archives[0]], archives[0].distribution)
self.assertPublicationsFromArchives(results, [archives[0]])
def test_getPublications_returns_only_published_publications(self):
# Publications that are not published will not be returned.
archive = self.factory.makeArchive()
sourcepackagename = self.factory.makeSourcePackageName()
self.factory.makeSourcePackagePublishingHistory(
archive=archive, sourcepackagename=sourcepackagename,
status=PackagePublishingStatus.PENDING)
results = self.getPublications(
sourcepackagename, [archive], archive.distribution)
self.assertEquals([], list(results))
def publishSourceInNewArchive(self, sourcepackagename):
distribution = self.factory.makeDistribution()
distroseries = self.factory.makeDistroSeries(
distribution=distribution)
archive = self.factory.makeArchive(distribution=distribution)
self.factory.makeSourcePackagePublishingHistory(
archive=archive, sourcepackagename=sourcepackagename,
distroseries=distroseries,
status=PackagePublishingStatus.PUBLISHED)
return archive
def test_getPublications_for_specific_distro(self):
# Results can be filtered for specific distributions.
sourcepackagename = self.factory.makeSourcePackageName()
archive = self.publishSourceInNewArchive(sourcepackagename)
other_archive = self.publishSourceInNewArchive(sourcepackagename)
# We don't get the results for other_distribution
results = self.getPublications(
sourcepackagename, [archive, other_archive],
distribution=archive.distribution)
self.assertPublicationsFromArchives(results, [archive])
class TestArchiveRepositorySize(TestCaseWithFactory):
layer = LaunchpadZopelessLayer
def test_empty_ppa_has_zero_binaries_size(self):
# An empty PPA has no binaries so has zero binaries_size.
ppa = self.factory.makeArchive(purpose=ArchivePurpose.PPA)
self.assertEquals(0, ppa.binaries_size)
def test_sources_size_on_empty_archive(self):
# Zero is returned for an archive without sources.
archive = self.factory.makeArchive()
self.assertEquals(0, archive.sources_size)
def publishSourceFile(self, archive, library_file):
"""Publish a source package with the given content to the archive.
:param archive: the IArchive to publish to.
:param library_file: a LibraryFileAlias for the content of the
source file.
"""
sourcepackagerelease = self.factory.makeSourcePackageRelease()
self.factory.makeSourcePackagePublishingHistory(
archive=archive, sourcepackagerelease=sourcepackagerelease,
status=PackagePublishingStatus.PUBLISHED)
self.factory.makeSourcePackageReleaseFile(
sourcepackagerelease=sourcepackagerelease,
library_file=library_file)
def test_sources_size_does_not_count_duplicated_files(self):
# If there are multiple copies of the same file name/size
# only one will be counted.
archive = self.factory.makeArchive()
library_file = self.factory.makeLibraryFileAlias()
self.publishSourceFile(archive, library_file)
self.assertEquals(
library_file.content.filesize, archive.sources_size)
self.publishSourceFile(archive, library_file)
self.assertEquals(
library_file.content.filesize, archive.sources_size)
class TestSeriesWithSources(TestCaseWithFactory):
"""Create some sources in different series."""
layer = DatabaseFunctionalLayer
def test_series_with_sources_returns_all_series(self):
# Calling series_with_sources returns all series with publishings.
distribution = self.factory.makeDistribution()
archive = self.factory.makeArchive(distribution=distribution)
self.factory.makeDistroSeries(
distribution=distribution, version="0.5")
series_with_sources1 = self.factory.makeDistroSeries(
distribution=distribution, version="1")
self.factory.makeSourcePackagePublishingHistory(
distroseries=series_with_sources1, archive=archive,
status=PackagePublishingStatus.PUBLISHED)
series_with_sources2 = self.factory.makeDistroSeries(
distribution=distribution, version="2")
self.factory.makeSourcePackagePublishingHistory(
distroseries=series_with_sources2, archive=archive,
status=PackagePublishingStatus.PENDING)
self.assertEqual(
[series_with_sources2, series_with_sources1],
archive.series_with_sources)
def test_series_with_sources_ignore_non_published_records(self):
# If all publishings in a series are deleted or superseded
# the series will not be returned.
series = self.factory.makeDistroSeries()
archive = self.factory.makeArchive(distribution=series.distribution)
self.factory.makeSourcePackagePublishingHistory(
distroseries=series, archive=archive,
status=PackagePublishingStatus.DELETED)
self.assertEqual([], archive.series_with_sources)
def test_series_with_sources_ordered_by_version(self):
# The returned series are ordered by the distroseries version.
distribution = self.factory.makeDistribution()
archive = self.factory.makeArchive(distribution=distribution)
series1 = self.factory.makeDistroSeries(
version="1", distribution=distribution)
series2 = self.factory.makeDistroSeries(
version="2", distribution=distribution)
self.factory.makeSourcePackagePublishingHistory(
distroseries=series1, archive=archive,
status=PackagePublishingStatus.PUBLISHED)
self.factory.makeSourcePackagePublishingHistory(
distroseries=series2, archive=archive,
status=PackagePublishingStatus.PUBLISHED)
self.assertEqual([series2, series1], archive.series_with_sources)
# Change the version such that they should order differently
removeSecurityProxy(series2).version = "0.5"
# ... and check that they do
self.assertEqual([series1, series2], archive.series_with_sources)
class TestGetSourcePackageReleases(TestCaseWithFactory):
layer = DatabaseFunctionalLayer
def createArchiveWithBuilds(self, statuses):
archive = self.factory.makeArchive()
sprs = []
for status in statuses:
sourcepackagerelease = self.factory.makeSourcePackageRelease()
self.factory.makeBinaryPackageBuild(
source_package_release=sourcepackagerelease,
archive=archive, status=status)
sprs.append(sourcepackagerelease)
self.factory.makeSourcePackageRelease()
return archive, sprs
def test_getSourcePackageReleases_with_no_params(self):
# With no params all source package releases are returned.
archive, sprs = self.createArchiveWithBuilds(
[BuildStatus.NEEDSBUILD, BuildStatus.FULLYBUILT])
self.assertContentEqual(
sprs, archive.getSourcePackageReleases())
def test_getSourcePackageReleases_with_buildstatus(self):
# Results are filtered by the specified buildstatus.
archive, sprs = self.createArchiveWithBuilds(
[BuildStatus.NEEDSBUILD, BuildStatus.FULLYBUILT])
self.assertContentEqual(
[sprs[0]], archive.getSourcePackageReleases(
build_status=BuildStatus.NEEDSBUILD))
class TestCorrespondingDebugArchive(TestCaseWithFactory):
layer = DatabaseFunctionalLayer
def testPrimaryDebugArchiveIsDebug(self):
distribution = self.factory.makeDistribution()
primary = self.factory.makeArchive(
distribution=distribution, purpose=ArchivePurpose.PRIMARY)
debug = self.factory.makeArchive(
distribution=distribution, purpose=ArchivePurpose.DEBUG)
self.assertEquals(primary.debug_archive, debug)
def testPartnerDebugArchiveIsSelf(self):
partner = self.factory.makeArchive(purpose=ArchivePurpose.PARTNER)
self.assertEquals(partner.debug_archive, partner)
def testCopyDebugArchiveIsSelf(self):
copy = self.factory.makeArchive(purpose=ArchivePurpose.COPY)
self.assertEquals(copy.debug_archive, copy)
def testDebugDebugArchiveIsSelf(self):
debug = self.factory.makeArchive(purpose=ArchivePurpose.DEBUG)
self.assertEquals(debug.debug_archive, debug)
def testPPADebugArchiveIsSelf(self):
ppa = self.factory.makeArchive(purpose=ArchivePurpose.PPA)
self.assertEquals(ppa.debug_archive, ppa)
def testMissingPrimaryDebugArchiveIsNone(self):
primary = self.factory.makeArchive(purpose=ArchivePurpose.PRIMARY)
self.assertIs(primary.debug_archive, None)
class TestArchiveEnableDisable(TestCaseWithFactory):
"""Test the enable and disable methods of Archive."""
layer = DatabaseFunctionalLayer
def _getBuildJobsByStatus(self, archive, status):
# Return the count for archive build jobs with the given status.
query = """
SELECT COUNT(Job.id)
FROM BinaryPackageBuild, BuildPackageJob, BuildQueue, Job,
PackageBuild, BuildFarmJob
WHERE
BuildPackageJob.build = BinaryPackageBuild.id
AND BuildPackageJob.job = BuildQueue.job
AND Job.id = BuildQueue.job
AND BinaryPackageBuild.package_build = PackageBuild.id
AND PackageBuild.archive = %s
AND PackageBuild.build_farm_job = BuildFarmJob.id
AND BuildFarmJob.status = %s
AND Job.status = %s;
""" % sqlvalues(archive, BuildStatus.NEEDSBUILD, status)
store = getUtility(IStoreSelector).get(MAIN_STORE, DEFAULT_FLAVOR)
return store.execute(query).get_one()[0]
def assertNoBuildJobsHaveStatus(self, archive, status):
# Check that that the jobs attached to this archive do not have this
# status.
self.assertEqual(self._getBuildJobsByStatus(archive, status), 0)
def assertHasBuildJobsWithStatus(self, archive, status, count):
# Check that that there are jobs attached to this archive that have
# the specified status.
self.assertEqual(self._getBuildJobsByStatus(archive, status), count)
def test_enableArchive(self):
# Enabling an archive should set all the Archive's suspended builds to
# WAITING.
archive = self.factory.makeArchive(enabled=True)
build = self.factory.makeBinaryPackageBuild(
archive=archive, status=BuildStatus.NEEDSBUILD)
build.queueBuild()
# disable the archive, as it is currently enabled
removeSecurityProxy(archive).disable()
self.assertHasBuildJobsWithStatus(archive, JobStatus.SUSPENDED, 1)
removeSecurityProxy(archive).enable()
self.assertNoBuildJobsHaveStatus(archive, JobStatus.SUSPENDED)
self.assertTrue(archive.enabled)
def test_enableArchiveAlreadyEnabled(self):
# Enabling an already enabled Archive should raise an AssertionError.
archive = self.factory.makeArchive(enabled=True)
self.assertRaises(AssertionError, removeSecurityProxy(archive).enable)
def test_disableArchive(self):
# Disabling an archive should set all the Archive's pending bulds to
# SUSPENDED.
archive = self.factory.makeArchive(enabled=True)
build = self.factory.makeBinaryPackageBuild(
archive=archive, status=BuildStatus.NEEDSBUILD)
build.queueBuild()
self.assertHasBuildJobsWithStatus(archive, JobStatus.WAITING, 1)
removeSecurityProxy(archive).disable()
self.assertNoBuildJobsHaveStatus(archive, JobStatus.WAITING)
self.assertFalse(archive.enabled)
def test_disableArchiveAlreadyDisabled(self):
# Disabling an already disabled Archive should raise an
# AssertionError.
archive = self.factory.makeArchive(enabled=False)
self.assertRaises(
AssertionError, removeSecurityProxy(archive).disable)
class TestCollectLatestPublishedSources(TestCaseWithFactory):
"""Ensure that the private helper method works as expected."""
layer = DatabaseFunctionalLayer
def makePublishedSources(self, archive, statuses, versions, names):
for status, version, name in zip(statuses, versions, names):
self.factory.makeSourcePackagePublishingHistory(
sourcepackagename=name, archive=archive,
version=version, status=status)
def test_collectLatestPublishedSources_returns_latest(self):
sourcepackagename = self.factory.makeSourcePackageName(name="foo")
other_spn = self.factory.makeSourcePackageName(name="bar")
archive = self.factory.makeArchive()
self.makePublishedSources(archive,
[PackagePublishingStatus.PUBLISHED] * 3,
["1.0", "1.1", "2.0"],
[sourcepackagename, sourcepackagename, other_spn])
pubs = removeSecurityProxy(archive)._collectLatestPublishedSources(
archive, ["foo"])
self.assertEqual(1, len(pubs))
self.assertEqual('1.1', pubs[0].source_package_version)
def test_collectLatestPublishedSources_returns_published_only(self):
# Set the status of the latest pub to DELETED and ensure that it
# is not returned.
sourcepackagename = self.factory.makeSourcePackageName(name="foo")
other_spn = self.factory.makeSourcePackageName(name="bar")
archive = self.factory.makeArchive()
self.makePublishedSources(archive,
[PackagePublishingStatus.PUBLISHED,
PackagePublishingStatus.DELETED,
PackagePublishingStatus.PUBLISHED],
["1.0", "1.1", "2.0"],
[sourcepackagename, sourcepackagename, other_spn])
pubs = removeSecurityProxy(archive)._collectLatestPublishedSources(
archive, ["foo"])
self.assertEqual(1, len(pubs))
self.assertEqual('1.0', pubs[0].source_package_version)
class TestArchiveCanUpload(TestCaseWithFactory):
"""Test the various methods that verify whether uploads are allowed to
happen."""
layer = DatabaseFunctionalLayer
def test_checkArchivePermission_by_PPA_owner(self):
# Uploading to a PPA should be allowed for a user that is the owner
owner = self.factory.makePerson(name="somebody")
archive = self.factory.makeArchive(owner=owner)
self.assertEquals(True, archive.checkArchivePermission(owner))
someone_unrelated = self.factory.makePerson(name="somebody-unrelated")
self.assertEquals(False,
archive.checkArchivePermission(someone_unrelated))
def test_checkArchivePermission_distro_archive(self):
# Regular users can not upload to ubuntu
archive = self.factory.makeArchive(purpose=ArchivePurpose.PRIMARY)
main = getUtility(IComponentSet)["main"]
# A regular user doesn't have access
somebody = self.factory.makePerson()
self.assertEquals(False,
archive.checkArchivePermission(somebody, main))
# An ubuntu core developer does have access
coredev = self.factory.makePerson()
with person_logged_in(archive.owner):
archive.newComponentUploader(coredev, main.name)
self.assertEquals(True, archive.checkArchivePermission(coredev, main))
def test_checkArchivePermission_ppa(self):
owner = self.factory.makePerson()
archive = self.factory.makeArchive(purpose=ArchivePurpose.PPA,
owner=owner)
somebody = self.factory.makePerson()
# The owner has access
self.assertEquals(True, archive.checkArchivePermission(owner))
# Somebody unrelated does not
self.assertEquals(False, archive.checkArchivePermission(somebody))
def makeArchiveAndActiveDistroSeries(self, purpose=None):
if purpose is None:
purpose = ArchivePurpose.PRIMARY
archive = self.factory.makeArchive(purpose=purpose)
distroseries = self.factory.makeDistroSeries(
distribution=archive.distribution,
status=SeriesStatus.DEVELOPMENT)
return archive, distroseries
def makePersonWithComponentPermission(self, archive):
person = self.factory.makePerson()
component = self.factory.makeComponent()
removeSecurityProxy(archive).newComponentUploader(
person, component)
return person, component
def checkUpload(self, archive, person, sourcepackagename,
distroseries=None, component=None,
pocket=None, strict_component=False):
if distroseries is None:
distroseries = self.factory.makeDistroSeries()
if component is None:
component = self.factory.makeComponent()
if pocket is None:
pocket = PackagePublishingPocket.RELEASE
return archive.checkUpload(
person, distroseries, sourcepackagename, component, pocket,
strict_component=strict_component)
def assertCanUpload(self, archive, person, sourcepackagename,
distroseries=None, component=None,
pocket=None, strict_component=False):
"""Assert an upload to 'archive' will be accepted."""
self.assertIs(
None,
self.checkUpload(
archive, person, sourcepackagename,
distroseries=distroseries, component=component,
pocket=pocket, strict_component=strict_component))
def assertCannotUpload(self, reason, archive, person, sourcepackagename,
distroseries=None, component=None, pocket=None,
strict_component=False):
"""Assert that upload to 'archive' will be rejected.
:param reason: The expected reason for not being able to upload. A
class.
"""
self.assertIsInstance(
self.checkUpload(
archive, person, sourcepackagename,
distroseries=distroseries, component=component,
pocket=pocket, strict_component=strict_component),
reason)
def test_checkUpload_partner_invalid_pocket(self):
# Partner archives only have release and proposed pockets
archive, distroseries = self.makeArchiveAndActiveDistroSeries(
purpose=ArchivePurpose.PARTNER)
self.assertCannotUpload(
InvalidPocketForPartnerArchive, archive,
self.factory.makePerson(), self.factory.makeSourcePackageName(),
pocket=PackagePublishingPocket.UPDATES,
distroseries=distroseries)
def test_checkUpload_ppa_invalid_pocket(self):
# PPA archives only have release pockets
archive, distroseries = self.makeArchiveAndActiveDistroSeries(
purpose=ArchivePurpose.PPA)
self.assertCannotUpload(
InvalidPocketForPPA, archive,
self.factory.makePerson(), self.factory.makeSourcePackageName(),
pocket=PackagePublishingPocket.PROPOSED,
distroseries=distroseries)
def test_checkUpload_invalid_pocket_for_series_state(self):
archive, distroseries = self.makeArchiveAndActiveDistroSeries(
purpose=ArchivePurpose.PRIMARY)
self.assertCannotUpload(
CannotUploadToPocket, archive,
self.factory.makePerson(), self.factory.makeSourcePackageName(),
pocket=PackagePublishingPocket.PROPOSED,
distroseries=distroseries)
def test_checkUpload_disabled_archive(self):
archive, distroseries = self.makeArchiveAndActiveDistroSeries(
purpose=ArchivePurpose.PRIMARY)
removeSecurityProxy(archive).disable()
self.assertCannotUpload(
ArchiveDisabled, archive, self.factory.makePerson(),
self.factory.makeSourcePackageName(),
distroseries=distroseries)
def test_checkUpload_ppa_owner(self):
person = self.factory.makePerson()
archive = self.factory.makeArchive(
purpose=ArchivePurpose.PPA, owner=person)
self.assertCanUpload(
archive, person, self.factory.makeSourcePackageName())
def test_checkUpload_ppa_with_permission(self):
archive = self.factory.makeArchive(purpose=ArchivePurpose.PPA)
person = self.factory.makePerson()
removeSecurityProxy(archive).newComponentUploader(person, "main")
# component is ignored
self.assertCanUpload(
archive, person, self.factory.makeSourcePackageName(),
component=self.factory.makeComponent(name="universe"))
def test_checkUpload_ppa_with_no_permission(self):
archive = self.factory.makeArchive(purpose=ArchivePurpose.PPA)
person = self.factory.makePerson()
self.assertCannotUpload(
CannotUploadToPPA, archive, person,
self.factory.makeSourcePackageName())
def test_owner_can_upload_to_ppa_no_sourcepackage(self):
# The owner can upload to PPAs even if the source package doesn't
# exist yet.
team = self.factory.makeTeam()
archive = self.factory.makeArchive(
purpose=ArchivePurpose.PPA, owner=team)
person = self.factory.makePerson()
removeSecurityProxy(team).addMember(person, team.teamowner)
self.assertCanUpload(archive, person, None)
def test_can_upload_to_ppa_for_old_series(self):
# You can upload whatever you want to a PPA, regardless of the upload
# policy.
person = self.factory.makePerson()
archive = self.factory.makeArchive(
purpose=ArchivePurpose.PPA, owner=person)
spn = self.factory.makeSourcePackageName()
distroseries = self.factory.makeDistroSeries(
status=SeriesStatus.CURRENT)
self.assertCanUpload(
archive, person, spn, distroseries=distroseries)
def test_checkUpload_copy_archive_no_permission(self):
archive, distroseries = self.makeArchiveAndActiveDistroSeries(
purpose=ArchivePurpose.COPY)
sourcepackagename = self.factory.makeSourcePackageName()
person = self.factory.makePerson()
removeSecurityProxy(archive).newPackageUploader(
person, sourcepackagename)
self.assertCannotUpload(
NoRightsForArchive, archive, person, sourcepackagename,
distroseries=distroseries)
def test_checkUploadToPocket_for_released_distroseries_copy_archive(self):
# Uploading to the release pocket in a released COPY archive
# should be allowed. This is mainly so that rebuilds that are
# running during the release process don't suddenly cause
# exceptions in the buildd-manager.
archive = self.factory.makeArchive(purpose=ArchivePurpose.COPY)
distroseries = self.factory.makeDistroSeries(
distribution=archive.distribution,
status=SeriesStatus.CURRENT)
self.assertIs(
None,
archive.checkUploadToPocket(
distroseries, PackagePublishingPocket.RELEASE))
def test_checkUpload_package_permission(self):
archive, distroseries = self.makeArchiveAndActiveDistroSeries(
purpose=ArchivePurpose.PRIMARY)
sourcepackagename = self.factory.makeSourcePackageName()
person = self.factory.makePerson()
removeSecurityProxy(archive).newPackageUploader(
person, sourcepackagename)
self.assertCanUpload(
archive, person, sourcepackagename, distroseries=distroseries)
def make_person_with_packageset_permission(self, archive, distroseries,
packages=()):
packageset = self.factory.makePackageset(
distroseries=distroseries, packages=packages)
person = self.factory.makePerson()
techboard = getUtility(ILaunchpadCelebrities).ubuntu_techboard
with person_logged_in(techboard):
archive.newPackagesetUploader(person, packageset)
return person, packageset
def test_checkUpload_packageset_permission(self):
archive, distroseries = self.makeArchiveAndActiveDistroSeries(
purpose=ArchivePurpose.PRIMARY)
sourcepackagename = self.factory.makeSourcePackageName()
person, packageset = self.make_person_with_packageset_permission(
archive, distroseries, packages=[sourcepackagename])
self.assertCanUpload(
archive, person, sourcepackagename, distroseries=distroseries)
def test_checkUpload_packageset_wrong_distroseries(self):
# A person with rights to upload to the package set in distro
# series K may not upload with these same rights to a different
# distro series L.
archive, distroseries = self.makeArchiveAndActiveDistroSeries(
purpose=ArchivePurpose.PRIMARY)
sourcepackagename = self.factory.makeSourcePackageName()
person, packageset = self.make_person_with_packageset_permission(
archive, distroseries, packages=[sourcepackagename])
other_distroseries = self.factory.makeDistroSeries()
self.assertCannotUpload(
InsufficientUploadRights, archive, person, sourcepackagename,
distroseries=other_distroseries)
def test_checkUpload_component_permission(self):
archive, distroseries = self.makeArchiveAndActiveDistroSeries(
purpose=ArchivePurpose.PRIMARY)
sourcepackagename = self.factory.makeSourcePackageName()
person, component = self.makePersonWithComponentPermission(
archive)
self.assertCanUpload(
archive, person, sourcepackagename, distroseries=distroseries,
component=component)
def test_checkUpload_no_permissions(self):
archive, distroseries = self.makeArchiveAndActiveDistroSeries(
purpose=ArchivePurpose.PRIMARY)
sourcepackagename = self.factory.makeSourcePackageName()
person = self.factory.makePerson()
self.assertCannotUpload(
NoRightsForArchive, archive, person, sourcepackagename,
distroseries=distroseries)
def test_checkUpload_insufficient_permissions(self):
archive, distroseries = self.makeArchiveAndActiveDistroSeries(
purpose=ArchivePurpose.PRIMARY)
sourcepackagename = self.factory.makeSourcePackageName()
person, packageset = self.make_person_with_packageset_permission(
archive, distroseries)
self.assertCannotUpload(
InsufficientUploadRights, archive, person, sourcepackagename,
distroseries=distroseries)
def test_checkUpload_without_strict_component(self):
archive, distroseries = self.makeArchiveAndActiveDistroSeries(
purpose=ArchivePurpose.PRIMARY)
sourcepackagename = self.factory.makeSourcePackageName()
person, component = self.makePersonWithComponentPermission(
archive)
other_component = self.factory.makeComponent()
self.assertCanUpload(
archive, person, sourcepackagename, distroseries=distroseries,
component=other_component, strict_component=False)
def test_checkUpload_with_strict_component(self):
archive, distroseries = self.makeArchiveAndActiveDistroSeries(
purpose=ArchivePurpose.PRIMARY)
sourcepackagename = self.factory.makeSourcePackageName()
person, component = self.makePersonWithComponentPermission(
archive)
other_component = self.factory.makeComponent()
self.assertCannotUpload(
NoRightsForComponent, archive, person, sourcepackagename,
distroseries=distroseries, component=other_component,
strict_component=True)
def test_checkUpload_component_rights_no_package(self):
# A person allowed to upload to a particular component of an archive
# can upload basically whatever they want to that component, even if
# the package doesn't exist yet.
archive = self.factory.makeArchive(purpose=ArchivePurpose.PRIMARY)
person, component = self.makePersonWithComponentPermission(
archive)
self.assertCanUpload(archive, person, None, component=component)
def makePackageToUpload(self, distroseries):
sourcepackagename = self.factory.makeSourcePackageName()
suitesourcepackage = self.factory.makeSuiteSourcePackage(
pocket=PackagePublishingPocket.RELEASE,
sourcepackagename=sourcepackagename,
distroseries=distroseries)
return suitesourcepackage
def test_canUploadSuiteSourcePackage_invalid_pocket(self):
# Test that canUploadSuiteSourcePackage calls checkUpload for
# the pocket checks.
person = self.factory.makePerson()
archive = self.factory.makeArchive(
purpose=ArchivePurpose.PPA, owner=person)
suitesourcepackage = self.factory.makeSuiteSourcePackage(
pocket=PackagePublishingPocket.PROPOSED)
self.assertEqual(
False,
archive.canUploadSuiteSourcePackage(person, suitesourcepackage))
def test_canUploadSuiteSourcePackage_no_permission(self):
# Test that canUploadSuiteSourcePackage calls verifyUpload for
# the permission checks.
archive = self.factory.makeArchive(purpose=ArchivePurpose.PPA)
suitesourcepackage = self.factory.makeSuiteSourcePackage(
pocket=PackagePublishingPocket.RELEASE)
person = self.factory.makePerson()
self.assertEqual(
False,
archive.canUploadSuiteSourcePackage(person, suitesourcepackage))
def test_canUploadSuiteSourcePackage_package_permission(self):
# Test that a package permission is enough to upload a new
# package.
archive, distroseries = self.makeArchiveAndActiveDistroSeries()
suitesourcepackage = self.makePackageToUpload(distroseries)
person = self.factory.makePerson()
removeSecurityProxy(archive).newPackageUploader(
person, suitesourcepackage.sourcepackagename)
self.assertEqual(
True,
archive.canUploadSuiteSourcePackage(person, suitesourcepackage))
def test_canUploadSuiteSourcePackage_component_permission(self):
# Test that component upload permission is enough to be
# allowed to upload a new package.
archive, distroseries = self.makeArchiveAndActiveDistroSeries()
suitesourcepackage = self.makePackageToUpload(distroseries)
person = self.factory.makePerson()
removeSecurityProxy(archive).newComponentUploader(person, "universe")
self.assertEqual(
True,
archive.canUploadSuiteSourcePackage(person, suitesourcepackage))
def test_canUploadSuiteSourcePackage_strict_component(self):
# Test that canUploadSuiteSourcePackage uses strict component
# checking.
archive, distroseries = self.makeArchiveAndActiveDistroSeries()
suitesourcepackage = self.makePackageToUpload(distroseries)
main_component = self.factory.makeComponent(name="main")
self.factory.makeSourcePackagePublishingHistory(
archive=archive, distroseries=distroseries,
sourcepackagename=suitesourcepackage.sourcepackagename,
status=PackagePublishingStatus.PUBLISHED,
pocket=PackagePublishingPocket.RELEASE,
component=main_component)
person = self.factory.makePerson()
removeSecurityProxy(archive).newComponentUploader(person, "universe")
# This time the user can't upload as there has been a
# publication and they don't have permission for the component
# the package is published in.
self.assertEqual(
False,
archive.canUploadSuiteSourcePackage(person, suitesourcepackage))
def test_hasAnyPermission(self):
# hasAnyPermission returns true if the person is the member of a
# team with any kind of permission on the archive.
archive = self.factory.makeArchive()
person = self.factory.makePerson()
team = self.factory.makeTeam()
main = getUtility(IComponentSet)["main"]
ArchivePermission(
archive=archive, person=team, component=main,
permission=ArchivePermissionType.UPLOAD)
self.assertFalse(archive.hasAnyPermission(person))
with celebrity_logged_in('admin'):
team.addMember(person, team.teamowner)
self.assertTrue(archive.hasAnyPermission(person))
class TestUpdatePackageDownloadCount(TestCaseWithFactory):
"""Ensure that updatePackageDownloadCount works as expected."""
layer = LaunchpadZopelessLayer
def setUp(self):
super(TestUpdatePackageDownloadCount, self).setUp()
self.publisher = SoyuzTestPublisher()
self.publisher.prepareBreezyAutotest()
self.store = getUtility(IStoreSelector).get(
MAIN_STORE, DEFAULT_FLAVOR)
self.archive = self.factory.makeArchive()
self.bpr_1 = self.publisher.getPubBinaries(
archive=self.archive)[0].binarypackagerelease
self.bpr_2 = self.publisher.getPubBinaries(
archive=self.archive)[0].binarypackagerelease
country_set = getUtility(ICountrySet)
self.australia = country_set['AU']
self.new_zealand = country_set['NZ']
def assertCount(self, count, archive, bpr, day, country):
self.assertEqual(count, self.store.find(
BinaryPackageReleaseDownloadCount,
archive=archive, binary_package_release=bpr,
day=day, country=country).one().count)
def test_creates_new_entry(self):
# The first update for a particular archive, package, day and
# country will create a new BinaryPackageReleaseDownloadCount
# entry.
day = date(2010, 2, 20)
self.assertIs(None, self.store.find(
BinaryPackageReleaseDownloadCount,
archive=self.archive, binary_package_release=self.bpr_1,
day=day, country=self.australia).one())
self.archive.updatePackageDownloadCount(
self.bpr_1, day, self.australia, 10)
self.assertCount(10, self.archive, self.bpr_1, day, self.australia)
def test_reuses_existing_entry(self):
# A second update will simply add to the count on the existing
# BPRDC.
day = date(2010, 2, 20)
self.archive.updatePackageDownloadCount(
self.bpr_1, day, self.australia, 10)
self.archive.updatePackageDownloadCount(
self.bpr_1, day, self.australia, 3)
self.assertCount(13, self.archive, self.bpr_1, day, self.australia)
def test_differentiates_between_countries(self):
# A different country will cause a new entry to be created.
day = date(2010, 2, 20)
self.archive.updatePackageDownloadCount(
self.bpr_1, day, self.australia, 10)
self.archive.updatePackageDownloadCount(
self.bpr_1, day, self.new_zealand, 3)
self.assertCount(10, self.archive, self.bpr_1, day, self.australia)
self.assertCount(3, self.archive, self.bpr_1, day, self.new_zealand)
def test_country_can_be_none(self):
# The country can be None, indicating that it is unknown.
day = date(2010, 2, 20)
self.archive.updatePackageDownloadCount(
self.bpr_1, day, self.australia, 10)
self.archive.updatePackageDownloadCount(
self.bpr_1, day, None, 3)
self.assertCount(10, self.archive, self.bpr_1, day, self.australia)
self.assertCount(3, self.archive, self.bpr_1, day, None)
def test_differentiates_between_days(self):
# A different date will also cause a new entry to be created.
day = date(2010, 2, 20)
another_day = date(2010, 2, 21)
self.archive.updatePackageDownloadCount(
self.bpr_1, day, self.australia, 10)
self.archive.updatePackageDownloadCount(
self.bpr_1, another_day, self.australia, 3)
self.assertCount(10, self.archive, self.bpr_1, day, self.australia)
self.assertCount(
3, self.archive, self.bpr_1, another_day, self.australia)
def test_differentiates_between_bprs(self):
# And even a different package will create a new entry.
day = date(2010, 2, 20)
self.archive.updatePackageDownloadCount(
self.bpr_1, day, self.australia, 10)
self.archive.updatePackageDownloadCount(
self.bpr_2, day, self.australia, 3)
self.assertCount(10, self.archive, self.bpr_1, day, self.australia)
self.assertCount(3, self.archive, self.bpr_2, day, self.australia)
class TestEnabledRestrictedBuilds(TestCaseWithFactory):
"""Ensure that restricted architecture family builds can be allowed and
disallowed correctly."""
layer = LaunchpadZopelessLayer
def setUp(self):
"""Setup an archive with relevant publications."""
super(TestEnabledRestrictedBuilds, self).setUp()
self.publisher = SoyuzTestPublisher()
self.publisher.prepareBreezyAutotest()
self.archive = self.factory.makeArchive()
self.archive_arch_set = getUtility(IArchiveArchSet)
self.arm = getUtility(IProcessorFamilySet).getByName('arm')
def test_main_archive_can_use_restricted(self):
# Main archives for distributions can always use restricted
# architectures.
distro = self.factory.makeDistribution()
self.assertContentEqual([self.arm],
distro.main_archive.enabled_restricted_families)
def test_main_archive_can_not_be_restricted(self):
# A main archive can not be restricted to certain architectures.
distro = self.factory.makeDistribution()
# Restricting to all restricted architectures is fine
distro.main_archive.enabled_restricted_families = [self.arm]
def restrict():
distro.main_archive.enabled_restricted_families = []
self.assertRaises(CannotRestrictArchitectures, restrict)
def test_default(self):
"""By default, ARM builds are not allowed as ARM is restricted."""
self.assertEquals(0,
self.archive_arch_set.getByArchive(
self.archive, self.arm).count())
self.assertContentEqual([], self.archive.enabled_restricted_families)
def test_get_uses_archivearch(self):
"""Adding an entry to ArchiveArch for ARM and an archive will
enable enabled_restricted_families for arm for that archive."""
self.assertContentEqual([], self.archive.enabled_restricted_families)
self.archive_arch_set.new(self.archive, self.arm)
self.assertEquals([self.arm],
list(self.archive.enabled_restricted_families))
def test_get_returns_restricted_only(self):
"""Adding an entry to ArchiveArch for something that is not
restricted does not make it show up in enabled_restricted_families.
"""
self.assertContentEqual([], self.archive.enabled_restricted_families)
self.archive_arch_set.new(self.archive,
getUtility(IProcessorFamilySet).getByName('amd64'))
self.assertContentEqual([], self.archive.enabled_restricted_families)
def test_set(self):
"""The property remembers its value correctly and sets ArchiveArch."""
self.archive.enabled_restricted_families = [self.arm]
allowed_restricted_families = self.archive_arch_set.getByArchive(
self.archive, self.arm)
self.assertEquals(1, allowed_restricted_families.count())
self.assertEquals(self.arm,
allowed_restricted_families[0].processorfamily)
self.assertEquals(
[self.arm], self.archive.enabled_restricted_families)
self.archive.enabled_restricted_families = []
self.assertEquals(0,
self.archive_arch_set.getByArchive(
self.archive, self.arm).count())
self.assertContentEqual([], self.archive.enabled_restricted_families)
class TestArchiveTokens(TestCaseWithFactory):
layer = LaunchpadZopelessLayer
def setUp(self):
super(TestArchiveTokens, self).setUp()
owner = self.factory.makePerson()
self.private_ppa = self.factory.makeArchive(owner=owner)
self.private_ppa.buildd_secret = 'blah'
self.private_ppa.private = True
self.joe = self.factory.makePerson(name='joe')
self.private_ppa.newSubscription(self.joe, owner)
def test_getAuthToken_with_no_token(self):
token = self.private_ppa.getAuthToken(self.joe)
self.assertEqual(token, None)
def test_getAuthToken_with_token(self):
token = self.private_ppa.newAuthToken(self.joe)
self.assertEqual(self.private_ppa.getAuthToken(self.joe), token)
def test_getArchiveSubscriptionURL(self):
url = self.joe.getArchiveSubscriptionURL(self.joe, self.private_ppa)
token = self.private_ppa.getAuthToken(self.joe)
self.assertEqual(token.archive_url, url)
class TestGetBinaryPackageRelease(TestCaseWithFactory):
"""Ensure that getBinaryPackageRelease works as expected."""
layer = LaunchpadZopelessLayer
def setUp(self):
"""Setup an archive with relevant publications."""
super(TestGetBinaryPackageRelease, self).setUp()
self.publisher = SoyuzTestPublisher()
self.publisher.prepareBreezyAutotest()
self.archive = self.factory.makeArchive()
self.archive.require_virtualized = False
self.i386_pub, self.hppa_pub = self.publisher.getPubBinaries(
version="1.2.3-4", archive=self.archive, binaryname="foo-bin",
status=PackagePublishingStatus.PUBLISHED,
architecturespecific=True)
self.i386_indep_pub, self.hppa_indep_pub = (
self.publisher.getPubBinaries(
version="1.2.3-4", archive=self.archive, binaryname="bar-bin",
status=PackagePublishingStatus.PUBLISHED))
self.bpns = getUtility(IBinaryPackageNameSet)
def test_returns_matching_binarypackagerelease(self):
# The BPR with a file by the given name should be returned.
self.assertEqual(
self.i386_pub.binarypackagerelease,
self.archive.getBinaryPackageRelease(
self.bpns['foo-bin'], '1.2.3-4', 'i386'))
def test_returns_correct_architecture(self):
# The architecture is taken into account correctly.
self.assertEqual(
self.hppa_pub.binarypackagerelease,
self.archive.getBinaryPackageRelease(
self.bpns['foo-bin'], '1.2.3-4', 'hppa'))
def test_works_with_architecture_independent_binaries(self):
# Architecture independent binaries with multiple publishings
# are found properly.
# We use 'i386' as the arch tag here, since what we have in the DB
# is the *build* arch tag, not the one in the filename ('all').
self.assertEqual(
self.i386_indep_pub.binarypackagerelease,
self.archive.getBinaryPackageRelease(
self.bpns['bar-bin'], '1.2.3-4', 'i386'))
def test_returns_none_for_nonexistent_binary(self):
# Non-existent files return None.
self.assertIs(
None,
self.archive.getBinaryPackageRelease(
self.bpns['cdrkit'], '1.2.3-4', 'i386'))
def test_returns_none_for_duplicate_file(self):
# In the unlikely case of multiple BPRs in this archive with the same
# name (hopefully impossible, but it still happens occasionally due
# to bugs), None is returned.
# Publish the same binaries again. Evil.
self.publisher.getPubBinaries(
version="1.2.3-4", archive=self.archive, binaryname="foo-bin",
status=PackagePublishingStatus.PUBLISHED,
architecturespecific=True)
self.assertIs(
None,
self.archive.getBinaryPackageRelease(
self.bpns['foo-bin'], '1.2.3-4', 'i386'))
def test_returns_none_from_another_archive(self):
# Cross-archive searches are not performed.
self.assertIs(
None,
self.factory.makeArchive().getBinaryPackageRelease(
self.bpns['foo-bin'], '1.2.3-4', 'i386'))
class TestGetBinaryPackageReleaseByFileName(TestCaseWithFactory):
"""Ensure that getBinaryPackageReleaseByFileName works as expected."""
layer = LaunchpadZopelessLayer
def setUp(self):
"""Setup an archive with relevant publications."""
super(TestGetBinaryPackageReleaseByFileName, self).setUp()
self.publisher = SoyuzTestPublisher()
self.publisher.prepareBreezyAutotest()
self.archive = self.factory.makeArchive()
self.archive.require_virtualized = False
self.i386_pub, self.hppa_pub = self.publisher.getPubBinaries(
version="1.2.3-4", archive=self.archive, binaryname="foo-bin",
status=PackagePublishingStatus.PUBLISHED,
architecturespecific=True)
self.i386_indep_pub, self.hppa_indep_pub = (
self.publisher.getPubBinaries(
version="1.2.3-4", archive=self.archive, binaryname="bar-bin",
status=PackagePublishingStatus.PUBLISHED))
def test_returns_matching_binarypackagerelease(self):
# The BPR with a file by the given name should be returned.
self.assertEqual(
self.i386_pub.binarypackagerelease,
self.archive.getBinaryPackageReleaseByFileName(
"foo-bin_1.2.3-4_i386.deb"))
def test_returns_correct_architecture(self):
# The architecture is taken into account correctly.
self.assertEqual(
self.hppa_pub.binarypackagerelease,
self.archive.getBinaryPackageReleaseByFileName(
"foo-bin_1.2.3-4_hppa.deb"))
def test_works_with_architecture_independent_binaries(self):
# Architecture independent binaries with multiple publishings
# are found properly.
self.assertEqual(
self.i386_indep_pub.binarypackagerelease,
self.archive.getBinaryPackageReleaseByFileName(
"bar-bin_1.2.3-4_all.deb"))
def test_returns_none_for_source_file(self):
# None is returned if the file is a source component instead.
self.assertIs(
None,
self.archive.getBinaryPackageReleaseByFileName(
"foo_1.2.3-4.dsc"))
def test_returns_none_for_nonexistent_file(self):
# Non-existent files return None.
self.assertIs(
None,
self.archive.getBinaryPackageReleaseByFileName(
"this-is-not-real_1.2.3-4_all.deb"))
def test_returns_latest_for_duplicate_file(self):
# In the unlikely case of multiple BPRs in this archive with the same
# name (hopefully impossible, but it still happens occasionally due
# to bugs), the latest is returned.
# Publish the same binaries again. Evil.
new_pubs = self.publisher.getPubBinaries(
version="1.2.3-4", archive=self.archive, binaryname="foo-bin",
status=PackagePublishingStatus.PUBLISHED,
architecturespecific=True)
self.assertEquals(
new_pubs[0].binarypackagerelease,
self.archive.getBinaryPackageReleaseByFileName(
"foo-bin_1.2.3-4_i386.deb"))
def test_returns_none_from_another_archive(self):
# Cross-archive searches are not performed.
self.assertIs(
None,
self.factory.makeArchive().getBinaryPackageReleaseByFileName(
"foo-bin_1.2.3-4_i386.deb"))
class TestArchiveDelete(TestCaseWithFactory):
"""Edge-case tests for PPA deletion.
PPA deletion is also documented in lp/soyuz/doc/archive-deletion.txt.
"""
layer = DatabaseFunctionalLayer
def setUp(self):
"""Create a test archive and login as the owner."""
super(TestArchiveDelete, self).setUp()
self.archive = self.factory.makeArchive()
login_person(self.archive.owner)
def test_delete(self):
# Sanity check for the unit-test.
self.archive.delete(deleted_by=self.archive.owner)
self.failUnlessEqual(ArchiveStatus.DELETING, self.archive.status)
def test_delete_when_disabled(self):
# A disabled archive can also be deleted (bug 574246).
self.archive.disable()
self.archive.delete(deleted_by=self.archive.owner)
self.failUnlessEqual(ArchiveStatus.DELETING, self.archive.status)
class TestCommercialArchive(TestCaseWithFactory):
"""Tests relating to commercial archives."""
layer = DatabaseFunctionalLayer
def setUp(self):
super(TestCommercialArchive, self).setUp()
self.archive = self.factory.makeArchive()
def setCommercial(self, archive, commercial):
"""Helper function."""
archive.commercial = commercial
def test_set_and_get_commercial(self):
# Basic set and get of the commercial property. Anyone can read
# it and it defaults to False.
login_person(self.archive.owner)
self.assertFalse(self.archive.commercial)
# The archive owner can't change the value.
self.assertRaises(
Unauthorized, self.setCommercial, self.archive, True)
# Commercial admins can change it.
login(COMMERCIAL_ADMIN_EMAIL)
self.setCommercial(self.archive, True)
self.assertTrue(self.archive.commercial)
class TestBuildDebugSymbols(TestCaseWithFactory):
"""Tests relating to the build_debug_symbols flag."""
layer = DatabaseFunctionalLayer
def setUp(self):
super(TestBuildDebugSymbols, self).setUp()
self.archive = self.factory.makeArchive()
def setBuildDebugSymbols(self, archive, build_debug_symbols):
"""Helper function."""
archive.build_debug_symbols = build_debug_symbols
def test_build_debug_symbols_is_public(self):
# Anyone can see the attribute.
login(ANONYMOUS)
self.assertFalse(self.archive.build_debug_symbols)
def test_owner_cannot_set_build_debug_symbols(self):
# The archive owner cannot set it.
login_person(self.archive.owner)
self.assertRaises(
Unauthorized, self.setBuildDebugSymbols, self.archive, True)
def test_commercial_admin_can_set_build_debug_symbols(self):
# A commercial admin can set it.
login(COMMERCIAL_ADMIN_EMAIL)
self.setBuildDebugSymbols(self.archive, True)
self.assertTrue(self.archive.build_debug_symbols)
class TestAddArchiveDependencies(TestCaseWithFactory):
layer = DatabaseFunctionalLayer
def test_add_hidden_dependency(self):
# The user cannot add a dependency on an archive they cannot see.
archive = self.factory.makeArchive(private=True)
dependency = self.factory.makeArchive(private=True)
with person_logged_in(archive.owner):
with ExpectedException(
ArchiveDependencyError,
"You don't have permission to use this dependency."):
archive.addArchiveDependency(dependency, 'foo')
def test_private_dependency_public_archive(self):
# A public archive may not depend on a private archive.
archive = self.factory.makeArchive()
dependency = self.factory.makeArchive(
private=True, owner=archive.owner)
with person_logged_in(archive.owner):
with ExpectedException(
ArchiveDependencyError,
"Public PPAs cannot depend on private ones."):
archive.addArchiveDependency(dependency, 'foo')
def test_add_private_dependency(self):
# The user can add a dependency on private archive they can see.
archive = self.factory.makeArchive(private=True)
dependency = self.factory.makeArchive(
private=True, owner=archive.owner)
with person_logged_in(archive.owner):
archive_dependency = archive.addArchiveDependency(dependency,
PackagePublishingPocket.RELEASE)
self.assertContentEqual(
archive.dependencies, [archive_dependency])
class TestArchiveDependencies(TestCaseWithFactory):
layer = LaunchpadZopelessLayer
def test_private_sources_list(self):
"""Entries for private dependencies include credentials."""
p3a = self.factory.makeArchive(name='p3a', private=True)
dependency = self.factory.makeArchive(
name='dependency', private=True, owner=p3a.owner)
with person_logged_in(p3a.owner):
bpph = self.factory.makeBinaryPackagePublishingHistory(
archive=dependency, status=PackagePublishingStatus.PUBLISHED)
p3a.addArchiveDependency(dependency,
PackagePublishingPocket.RELEASE)
build = self.factory.makeBinaryPackageBuild(archive=p3a,
distroarchseries=bpph.distroarchseries)
sources_list = get_sources_list_for_building(
build, build.distro_arch_series,
build.source_package_release.name)
sources_list_str = '\n'.join(sources_list)
matches = MatchesRegex(
"deb http://buildd:sekrit@private-ppa.launchpad.dev/"
"person-name-.*/dependency/ubuntu distroseries-.* main")
self.assertThat(sources_list[0], matches)
class TestFindDepCandidates(TestCaseWithFactory):
"""Tests for Archive.findDepCandidates."""
layer = LaunchpadZopelessLayer
def setUp(self):
super(TestFindDepCandidates, self).setUp()
self.archive = self.factory.makeArchive()
self.publisher = SoyuzTestPublisher()
login('admin@canonical.com')
self.publisher.prepareBreezyAutotest()
def assertDep(self, arch_tag, name, expected, archive=None,
pocket=PackagePublishingPocket.RELEASE, component=None,
source_package_name='something-new'):
"""Helper to check that findDepCandidates works.
Searches for the given dependency name in the given architecture and
archive, and compares it to the given expected value.
The archive defaults to self.archive.
Also commits, since findDepCandidates uses the slave store.
"""
transaction.commit()
if component is None:
component = getUtility(IComponentSet)['main']
if archive is None:
archive = self.archive
self.assertEquals(
list(
archive.findDepCandidates(
self.publisher.distroseries[arch_tag], pocket, component,
source_package_name, name)),
expected)
def test_finds_candidate_in_same_archive(self):
# A published candidate in the same archive should be found.
bins = self.publisher.getPubBinaries(
binaryname='foo', archive=self.archive,
status=PackagePublishingStatus.PUBLISHED)
self.assertDep('i386', 'foo', [bins[0]])
self.assertDep('hppa', 'foo', [bins[1]])
def test_does_not_find_pending_publication(self):
# A pending candidate in the same archive should not be found.
self.publisher.getPubBinaries(
binaryname='foo', archive=self.archive)
self.assertDep('i386', 'foo', [])
def test_ppa_searches_primary_archive(self):
# PPA searches implicitly look in the primary archive too.
self.assertEquals(self.archive.purpose, ArchivePurpose.PPA)
self.assertDep('i386', 'foo', [])
bins = self.publisher.getPubBinaries(
binaryname='foo', archive=self.archive.distribution.main_archive,
status=PackagePublishingStatus.PUBLISHED)
self.assertDep('i386', 'foo', [bins[0]])
def test_searches_dependencies(self):
# Candidates from archives on which the target explicitly depends
# should be found.
bins = self.publisher.getPubBinaries(
binaryname='foo', archive=self.archive,
status=PackagePublishingStatus.PUBLISHED)
other_archive = self.factory.makeArchive()
self.assertDep('i386', 'foo', [], archive=other_archive)
other_archive.addArchiveDependency(
self.archive, PackagePublishingPocket.RELEASE)
self.assertDep('i386', 'foo', [bins[0]], archive=other_archive)
def test_obeys_dependency_pockets(self):
# Only packages published in a pocket matching the dependency should
# be found.
release_bins = self.publisher.getPubBinaries(
binaryname='foo-release', archive=self.archive,
status=PackagePublishingStatus.PUBLISHED)
updates_bins = self.publisher.getPubBinaries(
binaryname='foo-updates', archive=self.archive,
status=PackagePublishingStatus.PUBLISHED,
pocket=PackagePublishingPocket.UPDATES)
proposed_bins = self.publisher.getPubBinaries(
binaryname='foo-proposed', archive=self.archive,
status=PackagePublishingStatus.PUBLISHED,
pocket=PackagePublishingPocket.PROPOSED)
# Temporarily turn our test PPA into a copy archive, so we can
# add non-RELEASE dependencies on it.
removeSecurityProxy(self.archive).purpose = ArchivePurpose.COPY
other_archive = self.factory.makeArchive()
other_archive.addArchiveDependency(
self.archive, PackagePublishingPocket.UPDATES)
self.assertDep(
'i386', 'foo-release', [release_bins[0]], archive=other_archive)
self.assertDep(
'i386', 'foo-updates', [updates_bins[0]], archive=other_archive)
self.assertDep('i386', 'foo-proposed', [], archive=other_archive)
other_archive.removeArchiveDependency(self.archive)
other_archive.addArchiveDependency(
self.archive, PackagePublishingPocket.PROPOSED)
self.assertDep(
'i386', 'foo-proposed', [proposed_bins[0]], archive=other_archive)
def test_obeys_dependency_components(self):
# Only packages published in a component matching the dependency
# should be found.
primary = self.archive.distribution.main_archive
main_bins = self.publisher.getPubBinaries(
binaryname='foo-main', archive=primary, component='main',
status=PackagePublishingStatus.PUBLISHED)
universe_bins = self.publisher.getPubBinaries(
binaryname='foo-universe', archive=primary,
component='universe',
status=PackagePublishingStatus.PUBLISHED)
self.archive.addArchiveDependency(
primary, PackagePublishingPocket.RELEASE,
component=getUtility(IComponentSet)['main'])
self.assertDep('i386', 'foo-main', [main_bins[0]])
self.assertDep('i386', 'foo-universe', [])
self.archive.removeArchiveDependency(primary)
self.archive.addArchiveDependency(
primary, PackagePublishingPocket.RELEASE,
component=getUtility(IComponentSet)['universe'])
self.assertDep('i386', 'foo-main', [main_bins[0]])
self.assertDep('i386', 'foo-universe', [universe_bins[0]])
class TestOverlays(TestCaseWithFactory):
layer = LaunchpadZopelessLayer
def _createDep(self, derived_series, parent_series,
parent_distro, component_name=None, pocket=None,
overlay=True, arch_tag='i386',
publish_base_url=u'http://archive.launchpad.dev/'):
# Helper to create a parent/child relationshipi.
if type(parent_distro) == str:
depdistro = self.factory.makeDistribution(parent_distro,
publish_base_url=publish_base_url)
else:
depdistro = parent_distro
if type(parent_series) == str:
depseries = self.factory.makeDistroSeries(
name=parent_series, distribution=depdistro)
deparchseries = self.factory.makeDistroArchSeries(
distroseries=depseries, architecturetag=arch_tag)
else:
depseries = parent_series
if component_name is not None:
component = getUtility(IComponentSet)[component_name]
else:
component = None
self.factory.makeDistroSeriesParent(
derived_series=derived_series, parent_series=depseries,
initialized=True, is_overlay=overlay, pocket=pocket,
component=component)
return depseries, depdistro
def test_overlay_dependencies(self):
# sources.list is properly generated for a complex overlay structure.
# Pocket dependencies and component dependencies are taken into
# account when generating sources.list.
#
# breezy type of relation:
# | | |
# ----------------------- | o
# | | | | |
# o o | no overlay overlay
# | | |
# series11 series21 series31
# |
# o
# |
# series12
#
test_publisher = SoyuzTestPublisher()
test_publisher.prepareBreezyAutotest()
breezy = test_publisher.breezy_autotest
pub_source = test_publisher.getPubSource(
version='1.1', archive=breezy.main_archive)
[build] = pub_source.createMissingBuilds()
series11, depdistro = self._createDep(
breezy, 'series11', 'depdistro', 'universe',
PackagePublishingPocket.SECURITY)
self._createDep(
breezy, 'series21', 'depdistro2', 'multiverse',
PackagePublishingPocket.UPDATES)
self._createDep(breezy, 'series31', 'depdistro3', overlay=False)
self._createDep(
series11, 'series12', 'depdistro4', 'multiverse',
PackagePublishingPocket.UPDATES)
sources_list = get_sources_list_for_building(build,
build.distro_arch_series, build.source_package_release.name)
self.assertThat(
"\n".join(sources_list),
DocTestMatches(
".../ubuntutest breezy-autotest main\n"
".../depdistro series11 main universe\n"
".../depdistro series11-security main universe\n"
".../depdistro2 series21 "
"main restricted universe multiverse\n"
".../depdistro2 series21-security "
"main restricted universe multiverse\n"
".../depdistro2 series21-updates "
"main restricted universe multiverse\n"
".../depdistro4 series12 main restricted "
"universe multiverse\n"
".../depdistro4 series12-security main "
"restricted universe multiverse\n"
".../depdistro4 series12-updates "
"main restricted universe multiverse\n"
, doctest.ELLIPSIS))
class TestComponents(TestCaseWithFactory):
layer = DatabaseFunctionalLayer
def test_no_components_for_arbitrary_person(self):
# By default, a person cannot upload to any component of an archive.
archive = self.factory.makeArchive()
person = self.factory.makePerson()
self.assertEqual(set(),
set(archive.getComponentsForUploader(person)))
def test_components_for_person_with_permissions(self):
# If a person has been explicitly granted upload permissions to a
# particular component, then those components are included in
# IArchive.getComponentsForUploader.
archive = self.factory.makeArchive()
component = self.factory.makeComponent()
person = self.factory.makePerson()
# Only admins or techboard members can add permissions normally. That
# restriction isn't relevant to this test.
ap_set = removeSecurityProxy(getUtility(IArchivePermissionSet))
ap = ap_set.newComponentUploader(archive, person, component)
self.assertEqual(set([ap]),
set(archive.getComponentsForUploader(person)))
class TestvalidatePPA(TestCaseWithFactory):
layer = DatabaseFunctionalLayer
def test_open_teams(self):
team = self.factory.makeTeam()
self.assertEqual('Open teams cannot have PPAs.',
Archive.validatePPA(team, None))
def test_distribution_name(self):
ppa_owner = self.factory.makePerson()
self.assertEqual(
'A PPA cannot have the same name as its distribution.',
Archive.validatePPA(ppa_owner, 'ubuntu'))
def test_two_ppas(self):
ppa = self.factory.makeArchive(name='ppa')
self.assertEqual("You already have a PPA named 'ppa'.",
Archive.validatePPA(ppa.owner, 'ppa'))
def test_two_ppas_with_team(self):
team = self.factory.makeTeam(
subscription_policy=TeamSubscriptionPolicy.MODERATED)
self.factory.makeArchive(owner=team, name='ppa')
self.assertEqual("%s already has a PPA named 'ppa'." % (
team.displayname), Archive.validatePPA(team, 'ppa'))
def test_valid_ppa(self):
ppa_owner = self.factory.makePerson()
self.assertEqual(None, Archive.validatePPA(ppa_owner, None))
class TestGetComponentsForSeries(TestCaseWithFactory):
"""Tests for Archive.getComponentsForSeries."""
layer = DatabaseFunctionalLayer
def setUp(self):
super(TestGetComponentsForSeries, self).setUp()
self.series = self.factory.makeDistroSeries()
self.comp1 = self.factory.makeComponent()
self.comp2 = self.factory.makeComponent()
def test_series_components_for_primary_archive(self):
# The primary archive uses the series' defined components.
archive = self.factory.makeArchive(purpose=ArchivePurpose.PRIMARY)
self.assertEquals(
0, len(archive.getComponentsForSeries(self.series)))
ComponentSelection(distroseries=self.series, component=self.comp1)
ComponentSelection(distroseries=self.series, component=self.comp2)
clear_property_cache(self.series)
self.assertEquals(
set((self.comp1, self.comp2)),
set(archive.getComponentsForSeries(self.series)))
def test_partner_component_for_partner_archive(self):
# The partner archive always uses only the 'partner' component.
archive = self.factory.makeArchive(purpose=ArchivePurpose.PARTNER)
ComponentSelection(distroseries=self.series, component=self.comp1)
partner_comp = getUtility(IComponentSet)['partner']
self.assertEquals(
[partner_comp],
list(archive.getComponentsForSeries(self.series)))
def test_component_for_ppas(self):
# PPAs only use 'main'.
archive = self.factory.makeArchive(purpose=ArchivePurpose.PPA)
ComponentSelection(distroseries=self.series, component=self.comp1)
main_comp = getUtility(IComponentSet)['main']
self.assertEquals(
[main_comp], list(archive.getComponentsForSeries(self.series)))
class TestDefaultComponent(TestCaseWithFactory):
"""Tests for Archive.default_component."""
layer = DatabaseFunctionalLayer
def test_default_component_for_other_archives(self):
archive = self.factory.makeArchive(purpose=ArchivePurpose.PRIMARY)
self.assertIs(None, archive.default_component)
def test_default_component_for_partner(self):
archive = self.factory.makeArchive(purpose=ArchivePurpose.PARTNER)
self.assertEquals(
getUtility(IComponentSet)['partner'], archive.default_component)
def test_default_component_for_ppas(self):
archive = self.factory.makeArchive(purpose=ArchivePurpose.PPA)
self.assertEquals(
getUtility(IComponentSet)['main'], archive.default_component)
class TestGetPockets(TestCaseWithFactory):
layer = DatabaseFunctionalLayer
def test_getPockets_for_other_archives(self):
archive = self.factory.makeArchive(purpose=ArchivePurpose.PRIMARY)
self.assertEqual(
list(PackagePublishingPocket.items), archive.getPockets())
def test_getPockets_for_PPAs(self):
archive = self.factory.makeArchive(purpose=ArchivePurpose.PPA)
self.assertEqual(
[PackagePublishingPocket.RELEASE], archive.getPockets())
class TestGetFileByName(TestCaseWithFactory):
"""Tests for Archive.getFileByName."""
layer = LaunchpadZopelessLayer
def setUp(self):
super(TestGetFileByName, self).setUp()
self.archive = self.factory.makeArchive()
def test_unknown_file_is_not_found(self):
# A file with an unsupported extension is not found.
self.assertRaises(NotFoundError, self.archive.getFileByName, 'a.bar')
def test_source_file_is_found(self):
# A file from a published source package can be retrieved.
pub = self.factory.makeSourcePackagePublishingHistory(
archive=self.archive)
dsc = self.factory.makeLibraryFileAlias(filename='foo_1.0.dsc')
self.assertRaises(
NotFoundError, self.archive.getFileByName, dsc.filename)
pub.sourcepackagerelease.addFile(dsc)
self.assertEquals(dsc, self.archive.getFileByName(dsc.filename))
def test_nonexistent_source_file_is_not_found(self):
# Something that looks like a source file but isn't is not
# found.
self.assertRaises(
NotFoundError, self.archive.getFileByName, 'foo_1.0.dsc')
def test_binary_file_is_found(self):
# A file from a published binary package can be retrieved.
pub = self.factory.makeBinaryPackagePublishingHistory(
archive=self.archive)
deb = self.factory.makeLibraryFileAlias(filename='foo_1.0_all.deb')
self.assertRaises(
NotFoundError, self.archive.getFileByName, deb.filename)
pub.binarypackagerelease.addFile(deb)
self.assertEquals(deb, self.archive.getFileByName(deb.filename))
def test_nonexistent_binary_file_is_not_found(self):
# Something that looks like a binary file but isn't is not
# found.
self.assertRaises(
NotFoundError, self.archive.getFileByName, 'foo_1.0_all.deb')
def test_source_changes_file_is_found(self):
# A .changes file from a published source can be retrieved.
pub = self.factory.makeSourcePackagePublishingHistory(
archive=self.archive)
pu = self.factory.makePackageUpload(
changes_filename='foo_1.0_source.changes')
pu.setDone()
self.assertRaises(
NotFoundError, self.archive.getFileByName,
pu.changesfile.filename)
pu.addSource(pub.sourcepackagerelease)
self.assertEquals(
pu.changesfile,
self.archive.getFileByName(pu.changesfile.filename))
def test_nonexistent_source_changes_file_is_not_found(self):
# Something that looks like a source .changes file but isn't is not
# found.
self.assertRaises(
NotFoundError, self.archive.getFileByName,
'foo_1.0_source.changes')
def test_package_diff_is_found(self):
# A .diff.gz from a package diff can be retrieved.
pub = self.factory.makeSourcePackagePublishingHistory(
archive=self.archive)
diff = self.factory.makePackageDiff(
to_source=pub.sourcepackagerelease,
diff_filename='foo_1.0.diff.gz')
self.assertEquals(
diff.diff_content,
self.archive.getFileByName(diff.diff_content.filename))
def test_expired_files_are_skipped(self):
# Expired files are ignored.
pub = self.factory.makeSourcePackagePublishingHistory(
archive=self.archive)
dsc = self.factory.makeLibraryFileAlias(filename='foo_1.0.dsc')
pub.sourcepackagerelease.addFile(dsc)
# The file is initially found without trouble.
self.assertEquals(dsc, self.archive.getFileByName(dsc.filename))
# But after expiry it is not.
removeSecurityProxy(dsc).content = None
self.assertRaises(
NotFoundError, self.archive.getFileByName, dsc.filename)
# It reappears if we create a new one.
new_dsc = self.factory.makeLibraryFileAlias(filename=dsc.filename)
pub.sourcepackagerelease.addFile(new_dsc)
self.assertEquals(new_dsc, self.archive.getFileByName(dsc.filename))
class TestGetPublishedSources(TestCaseWithFactory):
layer = DatabaseFunctionalLayer
def test_getPublishedSources_comprehensive(self):
# The doctests for getPublishedSources migrated from a doctest for
# better testing.
cprov = getUtility(IPersonSet).getByName('cprov')
cprov_archive = cprov.archive
# There are three published sources by default - no args returns all
# publications.
self.assertEqual(3, cprov_archive.getPublishedSources().count())
# Various filters.
active_status = [PackagePublishingStatus.PENDING,
PackagePublishingStatus.PUBLISHED]
inactive_status = [PackagePublishingStatus.SUPERSEDED,
PackagePublishingStatus.DELETED]
warty = cprov_archive.distribution['warty']
hoary = cprov_archive.distribution['hoary']
breezy_autotest = cprov_archive.distribution['breezy-autotest']
all_sources = cprov_archive.getPublishedSources()
expected = [('cdrkit - 1.0', 'breezy-autotest'),
('iceweasel - 1.0', 'warty'),
('pmount - 0.1-1', 'warty'),
]
found = []
for pub in all_sources:
title = pub.sourcepackagerelease.title
pub_ds = pub.distroseries.name
found.append((title, pub_ds))
self.assertEqual(expected, found)
self.assertEqual(1,
cprov_archive.getPublishedSources(name='cd').count())
self.assertEqual(1,
cprov_archive.getPublishedSources(name='ice').count())
self.assertEqual(1, cprov_archive.getPublishedSources(
name='iceweasel', exact_match=True).count())
self.assertEqual(0, cprov_archive.getPublishedSources(
name='ice', exact_match=True).count())
self.assertRaises(VersionRequiresName,
cprov_archive.getPublishedSources,
version='1.0')
self.assertEqual(1, cprov_archive.getPublishedSources(
name='ice', version='1.0').count())
self.assertEqual(0, cprov_archive.getPublishedSources(
name='ice', version='666').count())
self.assertEqual(3, cprov_archive.getPublishedSources(
status=PackagePublishingStatus.PUBLISHED).count())
self.assertEqual(3, cprov_archive.getPublishedSources(
status=active_status).count())
self.assertEqual(0, cprov_archive.getPublishedSources(
status=inactive_status).count())
self.assertEqual(2, cprov_archive.getPublishedSources(
distroseries=warty).count())
self.assertEqual(0, cprov_archive.getPublishedSources(
distroseries=hoary).count())
self.assertEqual(1, cprov_archive.getPublishedSources(
distroseries=breezy_autotest).count())
self.assertEqual(2, cprov_archive.getPublishedSources(
distroseries=warty,
pocket=PackagePublishingPocket.RELEASE).count())
self.assertEqual(0, cprov_archive.getPublishedSources(
distroseries=warty,
pocket=PackagePublishingPocket.UPDATES).count())
self.assertEqual(1, cprov_archive.getPublishedSources(
name='ice', distroseries=warty).count())
self.assertEqual(0, cprov_archive.getPublishedSources(
name='ice', distroseries=breezy_autotest).count())
self.assertEqual(0, cprov_archive.getPublishedSources(
created_since_date='2007-07-09 14:00:00').count())
mid_2007 = datetime(year=2007, month=7, day=9, hour=14)
self.assertEqual(0, cprov_archive.getPublishedSources(
created_since_date=mid_2007).count())
one_hour_step = timedelta(hours=1)
one_hour_earlier = mid_2007 - one_hour_step
self.assertEqual(1, cprov_archive.getPublishedSources(
created_since_date=one_hour_earlier).count())
two_hours_earlier = one_hour_earlier - one_hour_step
self.assertEqual(3, cprov_archive.getPublishedSources(
created_since_date=two_hours_earlier).count())
def test_getPublishedSources_name(self):
# The name parameter allows filtering with a list of
# names.
distroseries = self.factory.makeDistroSeries()
# Create some SourcePackagePublishingHistory.
for package_name in ['package1', 'package2', 'package3']:
self.factory.makeSourcePackagePublishingHistory(
distroseries=distroseries,
archive=distroseries.main_archive,
sourcepackagename=self.factory.makeSourcePackageName(
package_name))
filtered_sources = distroseries.main_archive.getPublishedSources(
name=['package1', 'package2'])
self.assertEqual(
3,
distroseries.main_archive.getPublishedSources().count())
self.assertEqual(
2,
filtered_sources.count())
self.assertContentEqual(
['package1', 'package2'],
[filtered_source.sourcepackagerelease.name for filtered_source in
filtered_sources])
class TestSyncSourceFeatureFlag(TestCaseWithFactory):
layer = DatabaseFunctionalLayer
def test_copyPackage_requires_feature_flag(self):
# Ensure feature is off.
self.useFixture(FeatureFixture({u"soyuz.copypackage.enabled": ''}))
archive = self.factory.makeArchive()
self.assertRaises(
ForbiddenByFeatureFlag,
archive.copyPackage,
None, None, None, None, None)
def test_copyPackages_requires_feature_flag(self):
# Ensure feature is off.
self.useFixture(FeatureFixture({u"soyuz.copypackage.enabled": ''}))
archive = self.factory.makeArchive()
self.assertRaises(
ForbiddenByFeatureFlag,
archive.copyPackages,
None, None, None, None, None)
class TestSyncSource(TestCaseWithFactory):
layer = DatabaseFunctionalLayer
def setUp(self):
super(TestSyncSource, self).setUp()
self.useFixture(FeatureFixture({u"soyuz.copypackage.enabled": 'on'}))
def test_security_team_can_copy_to_primary(self):
# A member of ubuntu-security can use syncSource on any package
# in the Ubuntu primary archive, regardless of their normal
# upload permissions.
# This is until we can open syncSource up more widely and sort
# out the permissions that everyone needs.
with celebrity_logged_in('admin'):
security_person = self.factory.makePerson()
getUtility(ILaunchpadCelebrities).ubuntu_security.addMember(
security_person, security_person)
ubuntu = getUtility(ILaunchpadCelebrities).ubuntu
source = self.factory.makeSourcePackagePublishingHistory(
archive=self.factory.makeArchive(purpose=ArchivePurpose.PPA),
distroseries=ubuntu.currentseries)
self.assertEqual(
0,
ubuntu.main_archive.getPublishedSources(
name=source.source_package_name).count())
with person_logged_in(security_person):
ubuntu.main_archive.syncSource(
source_name=source.source_package_name,
version=source.source_package_version,
from_archive=source.archive,
to_pocket='Security')
self.assertEqual(
1,
ubuntu.main_archive.getPublishedSources(
name=source.source_package_name).count())
def _setup_copy_data(self, target_purpose=None):
if target_purpose is None:
target_purpose = ArchivePurpose.PPA
source_archive = self.factory.makeArchive()
target_archive = self.factory.makeArchive(purpose=target_purpose)
source = self.factory.makeSourcePackagePublishingHistory(
archive=source_archive, status=PackagePublishingStatus.PUBLISHED)
source_name = source.source_package_name
version = source.source_package_version
to_pocket = PackagePublishingPocket.RELEASE
to_series = self.factory.makeDistroSeries(
distribution=target_archive.distribution)
return (source, source_archive, source_name, target_archive,
to_pocket, to_series, version)
def test_copyPackage_creates_packagecopyjob(self):
# The copyPackage method should create a PCJ with the appropriate
# parameters.
(source, source_archive, source_name, target_archive, to_pocket,
to_series, version) = self._setup_copy_data()
with person_logged_in(target_archive.owner):
target_archive.copyPackage(
source_name, version, source_archive, to_pocket.name,
to_series=to_series.name, include_binaries=False,
person=target_archive.owner)
# The source should not be published yet in the target_archive.
published = target_archive.getPublishedSources(
name=source.source_package_name).any()
self.assertIs(None, published)
# There should be one copy job.
job_source = getUtility(IPlainPackageCopyJobSource)
copy_job = job_source.getActiveJobs(target_archive).one()
# Its data should reflect the requested copy.
self.assertEqual(source_name, copy_job.package_name)
self.assertEqual(version, copy_job.package_version)
self.assertEqual(target_archive, copy_job.target_archive)
self.assertEqual(source_archive, copy_job.source_archive)
self.assertEqual(to_series, copy_job.target_distroseries)
self.assertEqual(to_pocket, copy_job.target_pocket)
self.assertFalse(copy_job.include_binaries)
self.assertEquals(PackageCopyPolicy.INSECURE, copy_job.copy_policy)
def test_copyPackage_disallows_non_primary_archive_uploaders(self):
# If copying to a primary archive and you're not an uploader for
# the package then you can't copy.
(source, source_archive, source_name, target_archive, to_pocket,
to_series, version) = self._setup_copy_data(
target_purpose=ArchivePurpose.PRIMARY)
person = self.factory.makePerson()
self.assertRaises(
CannotCopy,
target_archive.copyPackage, source_name, version, source_archive,
to_pocket.name, to_series=to_series.name, include_binaries=False,
person=person)
def test_copyPackage_allows_primary_archive_uploaders(self):
# Copying to a primary archive if you're already an uploader is OK.
(source, source_archive, source_name, target_archive, to_pocket,
to_series, version) = self._setup_copy_data(
target_purpose=ArchivePurpose.PRIMARY)
person = self.factory.makePerson()
with person_logged_in(target_archive.owner):
target_archive.newComponentUploader(person, "universe")
target_archive.copyPackage(
source_name, version, source_archive, to_pocket.name,
to_series=to_series.name, include_binaries=False,
person=person)
# There should be one copy job.
job_source = getUtility(IPlainPackageCopyJobSource)
copy_job = job_source.getActiveJobs(target_archive).one()
self.assertEqual(target_archive, copy_job.target_archive)
def test_copyPackage_disallows_non_PPA_owners(self):
# Only people with launchpad.Append are allowed to call copyPackage.
(source, source_archive, source_name, target_archive, to_pocket,
to_series, version) = self._setup_copy_data()
person = self.factory.makePerson()
self.assertTrue(target_archive.is_ppa)
self.assertRaises(
CannotCopy,
target_archive.copyPackage, source_name, version, source_archive,
to_pocket.name, to_series=to_series.name, include_binaries=False,
person=person)
def test_copyPackage_disallows_non_release_target_pocket_for_PPA(self):
(source, source_archive, source_name, target_archive, to_pocket,
to_series, version) = self._setup_copy_data()
to_pocket = PackagePublishingPocket.UPDATES
self.assertTrue(target_archive.is_ppa)
self.assertRaises(
CannotCopy,
target_archive.copyPackage, source_name, version, source_archive,
to_pocket.name, to_series=to_series.name, include_binaries=False,
person=target_archive.owner)
def test_copyPackages_with_single_package(self):
(source, source_archive, source_name, target_archive, to_pocket,
to_series, version) = self._setup_copy_data()
with person_logged_in(target_archive.owner):
target_archive.copyPackages(
[source_name], source_archive, to_pocket.name,
to_series=to_series.name, include_binaries=False,
person=target_archive.owner)
# The source should not be published yet in the target_archive.
published = target_archive.getPublishedSources(
name=source.source_package_name).any()
self.assertIs(None, published)
# There should be one copy job.
job_source = getUtility(IPlainPackageCopyJobSource)
copy_job = job_source.getActiveJobs(target_archive).one()
self.assertEqual(target_archive, copy_job.target_archive)
def test_copyPackages_with_multiple_packages(self):
(source, source_archive, source_name, target_archive, to_pocket,
to_series, version) = self._setup_copy_data()
sources = [source]
sources.append(self.factory.makeSourcePackagePublishingHistory(
archive=source_archive,
status=PackagePublishingStatus.PUBLISHED))
sources.append(self.factory.makeSourcePackagePublishingHistory(
archive=source_archive,
status=PackagePublishingStatus.PUBLISHED))
names = [source.sourcepackagerelease.sourcepackagename.name
for source in sources]
with person_logged_in(target_archive.owner):
target_archive.copyPackages(
names, source_archive, to_pocket.name,
to_series=to_series.name, include_binaries=False,
person=target_archive.owner)
# Make sure three copy jobs exist.
job_source = getUtility(IPlainPackageCopyJobSource)
copy_jobs = job_source.getActiveJobs(target_archive)
self.assertEqual(3, copy_jobs.count())
def test_copyPackages_disallows_non_primary_archive_uploaders(self):
# If copying to a primary archive and you're not an uploader for
# the package then you can't copy.
(source, source_archive, source_name, target_archive, to_pocket,
to_series, version) = self._setup_copy_data(
target_purpose=ArchivePurpose.PRIMARY)
person = self.factory.makePerson()
self.assertRaises(
CannotCopy,
target_archive.copyPackages, [source_name], source_archive,
to_pocket.name, to_series=to_series.name, include_binaries=False,
person=person)
def test_copyPackages_allows_primary_archive_uploaders(self):
# Copying to a primary archive if you're already an uploader is OK.
(source, source_archive, source_name, target_archive, to_pocket,
to_series, version) = self._setup_copy_data(
target_purpose=ArchivePurpose.PRIMARY)
person = self.factory.makePerson()
with person_logged_in(target_archive.owner):
target_archive.newComponentUploader(person, "universe")
target_archive.copyPackages(
[source_name], source_archive, to_pocket.name,
to_series=to_series.name, include_binaries=False,
person=person)
# There should be one copy job.
job_source = getUtility(IPlainPackageCopyJobSource)
copy_job = job_source.getActiveJobs(target_archive).one()
self.assertEqual(target_archive, copy_job.target_archive)
def test_copyPackages_disallows_non_PPA_owners(self):
# Only people with launchpad.Append are allowed to call copyPackage.
(source, source_archive, source_name, target_archive, to_pocket,
to_series, version) = self._setup_copy_data()
person = self.factory.makePerson()
self.assertTrue(target_archive.is_ppa)
self.assertRaises(
CannotCopy,
target_archive.copyPackages, [source_name], source_archive,
to_pocket.name, to_series=to_series.name, include_binaries=False,
person=person)
|