Пример #1
0
    def test_download_url_for_invalid_metadata(self, content_as_string):
        content_as_string.return_value = """
<metadata modelVersion="1.1.0">
    <groupId>org.elasticsearch.distribution.tar</groupId>
    <artifactId>elasticsearch</artifactId>
    <version>5.0.0-SNAPSHOT</version>
    <versioning>
        <snapshot>
            <timestamp>20160613.162731</timestamp>
            <buildNumber>397</buildNumber>
        </snapshot>
        <lastUpdated>20160616030717</lastUpdated>
        <snapshotVersions>
            <snapshotVersion>
                <extension>pom</extension>
                <value>5.0.0-20160613.162731-397</value>
                <updated>20160613162731</updated>
            </snapshotVersion>
        </snapshotVersions>
    </versioning>
</metadata>
"""
        repo = supplier.SnapshotDistributionRepo()
        with self.assertRaises(exceptions.SystemSetupError) as ctx:
            repo.download_url("5.0.0-SNAPSHOT")
        self.assertEqual(
            "Cannot derive download URL for Elasticsearch 5.0.0-SNAPSHOT",
            ctx.exception.args[0])
Пример #2
0
    def test_download_url_for_valid_version(self, content_as_string):
        content_as_string.return_value = """
<metadata modelVersion="1.1.0">
    <groupId>org.elasticsearch.distribution.tar</groupId>
    <artifactId>elasticsearch</artifactId>
    <version>5.0.0-SNAPSHOT</version>
    <versioning>
        <snapshot>
            <timestamp>20160613.162731</timestamp>
            <buildNumber>397</buildNumber>
        </snapshot>
        <lastUpdated>20160616030717</lastUpdated>
        <snapshotVersions>
            <snapshotVersion>
                <extension>pom</extension>
                <value>5.0.0-20160613.162731-397</value>
                <updated>20160613162731</updated>
            </snapshotVersion>
            <snapshotVersion>
                <extension>tar.gz</extension>
                <value>5.0.0-20160613.162731-397</value>
                <updated>20160613162731</updated>
            </snapshotVersion>
        </snapshotVersions>
    </versioning>
</metadata>
"""
        repo = supplier.SnapshotDistributionRepo()
        self.assertEqual(
            "https://oss.sonatype.org/content/repositories/snapshots/org/elasticsearch/distribution/tar/elasticsearch/"
            "5.0.0-SNAPSHOT/elasticsearch-5.0.0-20160613.162731-397.tar.gz",
            repo.download_url("5.0.0-SNAPSHOT"))
Пример #3
0
 def test_download_url_for_unavailable_metadata(self, content_as_string):
     content_as_string.side_effect = urllib.error.HTTPError(
         "url", 404, "", "", None)
     repo = supplier.SnapshotDistributionRepo()
     with self.assertRaises(exceptions.SystemSetupError) as ctx:
         repo.download_url("10.0.0-SNAPSHOT")
     self.assertEqual(
         "Cannot derive download URL for Elasticsearch 10.0.0-SNAPSHOT",
         ctx.exception.args[0])
Пример #4
0
    def test_download_url_for_corrupt_metadata(self, content_as_string):
        content_as_string.return_value = """
<metadata modelVersion="1.1
"""
        repo = supplier.SnapshotDistributionRepo()
        with self.assertRaises(exceptions.SystemSetupError) as ctx:
            repo.download_url("5.0.0-SNAPSHOT")
        self.assertEqual(
            "Cannot derive download URL for Elasticsearch 5.0.0-SNAPSHOT",
            ctx.exception.args[0])