Ejemplo n.º 1
0
 def setUp(self) -> None:
     manifest_path = os.path.join(os.path.dirname(__file__), "data", "opensearch-dashboards-build-1.1.0.yml")
     self.manifest = BuildManifest.from_path(manifest_path)
     self.bundle_recorder = BundleRecorder(
         self.manifest.build,
         "output_dir",
         "artifacts_dir",
         BundleFileLocation("bundle_output_dir", "opensearch-dashboards")
     )
Ejemplo n.º 2
0
    def test_record_component_public(self) -> None:
        self.bundle_recorder = BundleRecorder(
            self.manifest.build, "output_dir", "artifacts_dir",
            BundleUrlLocation(
                "https://ci.opensearch.org/ci/ci-env-prod/job-name-dashboards/1.2.0/build-123/platform-mac/arch-amd64/",
                "opensearch-dashboards", "tar"))

        component = BuildComponent({
            "name": "alertingDashboards",
            "repository":
            "https://github.com/opensearch-project/alerting-dashboards-plugin",
            "ref": "main",
            "commit_id": "ae789280740d7000d1f13245019414abeedfc286",
            "artifacts": [],
            "version": "1.0",
        })
        self.bundle_recorder.record_component(component, "plugins")

        self.assertEqual(
            self.bundle_recorder.get_manifest().to_dict(),
            {
                "build": {
                    "platform":
                    "linux",
                    "architecture":
                    "x64",
                    "distribution":
                    "tar",
                    "id":
                    "c94ebec444a94ada86a230c9297b1d73",
                    "location":
                    ("https://ci.opensearch.org/ci/ci-env-prod/job-name-dashboards/1.2.0/build-123/platform-mac/arch-amd64/tar/"
                     "dist/opensearch-dashboards/opensearch-dashboards-1.1.0-linux-x64.tar.gz"
                     ),
                    "name":
                    "OpenSearch Dashboards",
                    "version":
                    "1.1.0",
                },
                "components": [{
                    "commit_id":
                    "ae789280740d7000d1f13245019414abeedfc286",
                    "location":
                    ("https://ci.opensearch.org/ci/ci-env-prod/job-name-dashboards/1.2.0/build-123/platform-mac/arch-amd64/tar/"
                     "builds/opensearch-dashboards/plugins"),
                    "name":
                    component.name,
                    "ref":
                    "main",
                    "repository":
                    "https://github.com/opensearch-project/alerting-dashboards-plugin",
                }],
                "schema-version":
                "1.1",
            },
        )
Ejemplo n.º 3
0
    def test_record_component_public(self) -> None:
        self.bundle_recorder = BundleRecorder(
            self.manifest.build, "output_dir", "artifacts_dir",
            BundleUrlLocation(
                "https://ci.opensearch.org/ci/ci-env-prod/job-name-opensearch/1.2.0/build-123/platform-mac/arch-amd64/",
                "opensearch", "tar"))

        component = BuildComponent({
            "name": "job_scheduler",
            "repository":
            "https://github.com/opensearch-project/job_scheduler",
            "ref": "main",
            "commit_id": "3913d7097934cbfe1fdcf919347f22a597d00b76",
            "artifacts": [],
            "version": "1.0",
        })

        self.bundle_recorder.record_component(component, "plugins")

        self.assertEqual(
            self.bundle_recorder.get_manifest().to_dict(),
            {
                "build": {
                    "platform":
                    "linux",
                    "architecture":
                    "x64",
                    "distribution":
                    "tar",
                    "id":
                    "c3ff7a232d25403fa8cc14c97799c323",
                    "location":
                    ("https://ci.opensearch.org/ci/ci-env-prod/job-name-opensearch/1.2.0/build-123/platform-mac/arch-amd64/tar/"
                     "dist/opensearch/opensearch-1.1.0-linux-x64.tar.gz"),
                    "name":
                    "OpenSearch",
                    "version":
                    "1.1.0",
                },
                "components": [{
                    "commit_id":
                    "3913d7097934cbfe1fdcf919347f22a597d00b76",
                    "location":
                    "https://ci.opensearch.org/ci/ci-env-prod/job-name-opensearch/1.2.0/build-123/platform-mac/arch-amd64/tar/builds/opensearch/plugins",
                    "name":
                    component.name,
                    "ref":
                    "main",
                    "repository":
                    "https://github.com/opensearch-project/job_scheduler",
                }],
                "schema-version":
                "1.1",
            },
        )
Ejemplo n.º 4
0
    def setUp(self) -> None:
        self.maxDiff = None
        manifest_path = os.path.join(os.path.dirname(__file__), "data",
                                     "opensearch-build-linux-1.1.0.yml")
        self.manifest = BuildManifest.from_path(manifest_path)
        self.bundle_recorder = BundleRecorder(
            self.manifest.build, "output_dir", "artifacts_dir",
            BundleFileLocation("bundle_output_dir", "opensearch", "tar"))

        manifest_distribution_path = os.path.join(
            os.path.dirname(__file__), "data",
            "opensearch-build-windows-1.3.0.yml")
        self.manifest_distribution = BuildManifest.from_path(
            manifest_distribution_path)
        self.bundle_recorder_distribution = BundleRecorder(
            self.manifest_distribution.build, "output_dir", "artifacts_dir",
            BundleFileLocation("bundle_output_dir", "opensearch", "tar"))
Ejemplo n.º 5
0
def main() -> int:
    args = AssembleArgs()

    console.configure(level=args.logging_level)

    build_manifest = BuildManifest.from_file(args.manifest)
    build = build_manifest.build
    artifacts_dir = os.path.dirname(os.path.realpath(args.manifest.name))

    output_dir = AssembleOutputDir(build.filename).dir

    logging.info(f"Bundling {build.name} ({build.architecture}) on {build.platform} into {output_dir} ...")

    bundle_recorder = BundleRecorder(
        build,
        output_dir,
        artifacts_dir,
        BundleLocations.from_path(args.base_url, os.getcwd(), build.filename)
    )

    with Bundles.create(build_manifest, artifacts_dir, bundle_recorder, args.keep) as bundle:
        bundle.install_min()
        bundle.install_plugins()
        logging.info(f"Installed plugins: {bundle.installed_plugins}")

        #  Save a copy of the manifest inside of the tar
        bundle_recorder.write_manifest(bundle.min_dist.archive_path)
        bundle.package(output_dir)

        bundle_recorder.write_manifest(output_dir)

    logging.info("Done.")
    return 0
Ejemplo n.º 6
0
class TestBundleRecorderDashboards(unittest.TestCase):
    def setUp(self) -> None:
        self.maxDiff = None
        manifest_path = os.path.join(os.path.dirname(__file__), "data",
                                     "opensearch-dashboards-build-1.1.0.yml")
        self.manifest = BuildManifest.from_path(manifest_path)
        self.bundle_recorder = BundleRecorder(
            self.manifest.build, "output_dir", "artifacts_dir",
            BundleFileLocation("bundle_output_dir", "opensearch-dashboards",
                               "tar"))

        manifest_distribution_path = os.path.join(
            os.path.dirname(__file__), "data",
            "opensearch-dashboards-build-windows-1.3.0.yml")
        self.manifest_distribution = BuildManifest.from_path(
            manifest_distribution_path)
        self.bundle_recorder_distribution = BundleRecorder(
            self.manifest_distribution.build, "output_dir", "artifacts_dir",
            BundleFileLocation("bundle_output_dir", "opensearch-dashboards",
                               "tar"))

    def test_record_component(self) -> None:
        component = BuildComponent({
            "name": "alertingDashboards",
            "repository":
            "https://github.com/opensearch-project/alerting-dashboards-plugin",
            "ref": "main",
            "commit_id": "ae789280740d7000d1f13245019414abeedfc286",
            "artifacts": [],
            "version": "1.0",
        })
        self.bundle_recorder.record_component(component, "plugins")

        self.assertEqual(
            self.bundle_recorder.get_manifest().to_dict(),
            {
                "build": {
                    "platform":
                    "linux",
                    "architecture":
                    "x64",
                    "distribution":
                    "tar",
                    "id":
                    "c94ebec444a94ada86a230c9297b1d73",
                    "location":
                    os.path.join(
                        "bundle_output_dir", "tar", "dist",
                        "opensearch-dashboards",
                        "opensearch-dashboards-1.1.0-linux-x64.tar.gz"),
                    "name":
                    "OpenSearch Dashboards",
                    "version":
                    "1.1.0",
                },
                "components": [{
                    "commit_id":
                    "ae789280740d7000d1f13245019414abeedfc286",
                    "location":
                    os.path.join("bundle_output_dir", "tar", "builds",
                                 "opensearch-dashboards", "plugins"),
                    "name":
                    component.name,
                    "ref":
                    "main",
                    "repository":
                    "https://github.com/opensearch-project/alerting-dashboards-plugin",
                }],
                "schema-version":
                "1.1",
            },
        )

    def test_get_manifest(self) -> None:
        manifest = self.bundle_recorder.get_manifest()
        self.assertIs(type(manifest), BundleManifest)
        self.assertEqual(
            manifest.to_dict(),
            {
                "build": {
                    "platform":
                    "linux",
                    "architecture":
                    "x64",
                    "distribution":
                    "tar",
                    "id":
                    "c94ebec444a94ada86a230c9297b1d73",
                    "location":
                    os.path.join(
                        "bundle_output_dir", "tar", "dist",
                        "opensearch-dashboards",
                        "opensearch-dashboards-1.1.0-linux-x64.tar.gz"),
                    "name":
                    "OpenSearch Dashboards",
                    "version":
                    "1.1.0",
                },
                "schema-version": "1.1",
            },
        )

    def test_get_manifest_distribution(self) -> None:
        manifest = self.bundle_recorder_distribution.get_manifest()
        self.assertIs(type(manifest), BundleManifest)
        self.assertEqual(
            manifest.to_dict(),
            {
                "build": {
                    "platform":
                    "windows",
                    "architecture":
                    "x64",
                    "distribution":
                    "zip",
                    "id":
                    "c94ebec444a94ada86a230c9297b1d73",
                    "location":
                    os.path.join(
                        "bundle_output_dir", "tar", "dist",
                        "opensearch-dashboards",
                        "opensearch-dashboards-1.3.0-windows-x64.zip"),
                    "name":
                    "OpenSearch Dashboards",
                    "version":
                    "1.3.0",
                },
                "schema-version": "1.1",
            },
        )

    def test_write_manifest(self) -> None:
        with TemporaryDirectory() as dest_dir:
            self.bundle_recorder.write_manifest(dest_dir.name)
            manifest_path = os.path.join(dest_dir.name, "manifest.yml")
            self.assertTrue(os.path.isfile(manifest_path))
            data = self.bundle_recorder.get_manifest().to_dict()
            with open(manifest_path) as f:
                self.assertEqual(yaml.safe_load(f), data)

    def test_record_component_public(self) -> None:
        self.bundle_recorder = BundleRecorder(
            self.manifest.build, "output_dir", "artifacts_dir",
            BundleUrlLocation(
                "https://ci.opensearch.org/ci/ci-env-prod/job-name-dashboards/1.2.0/build-123/platform-mac/arch-amd64/",
                "opensearch-dashboards", "tar"))

        component = BuildComponent({
            "name": "alertingDashboards",
            "repository":
            "https://github.com/opensearch-project/alerting-dashboards-plugin",
            "ref": "main",
            "commit_id": "ae789280740d7000d1f13245019414abeedfc286",
            "artifacts": [],
            "version": "1.0",
        })
        self.bundle_recorder.record_component(component, "plugins")

        self.assertEqual(
            self.bundle_recorder.get_manifest().to_dict(),
            {
                "build": {
                    "platform":
                    "linux",
                    "architecture":
                    "x64",
                    "distribution":
                    "tar",
                    "id":
                    "c94ebec444a94ada86a230c9297b1d73",
                    "location":
                    ("https://ci.opensearch.org/ci/ci-env-prod/job-name-dashboards/1.2.0/build-123/platform-mac/arch-amd64/tar/"
                     "dist/opensearch-dashboards/opensearch-dashboards-1.1.0-linux-x64.tar.gz"
                     ),
                    "name":
                    "OpenSearch Dashboards",
                    "version":
                    "1.1.0",
                },
                "components": [{
                    "commit_id":
                    "ae789280740d7000d1f13245019414abeedfc286",
                    "location":
                    ("https://ci.opensearch.org/ci/ci-env-prod/job-name-dashboards/1.2.0/build-123/platform-mac/arch-amd64/tar/"
                     "builds/opensearch-dashboards/plugins"),
                    "name":
                    component.name,
                    "ref":
                    "main",
                    "repository":
                    "https://github.com/opensearch-project/alerting-dashboards-plugin",
                }],
                "schema-version":
                "1.1",
            },
        )

    def test_package_name(self) -> None:
        self.assertEqual(
            self.bundle_recorder.package_name,
            "opensearch-dashboards-1.1.0-linux-x64.tar.gz",
        )
Ejemplo n.º 7
0
class TestBundleRecorder(unittest.TestCase):
    def setUp(self) -> None:
        self.maxDiff = None
        manifest_path = os.path.join(os.path.dirname(__file__), "data",
                                     "opensearch-build-linux-1.1.0.yml")
        self.manifest = BuildManifest.from_path(manifest_path)
        self.bundle_recorder = BundleRecorder(
            self.manifest.build, "output_dir", "artifacts_dir",
            BundleFileLocation("bundle_output_dir", "opensearch", "tar"))

        manifest_distribution_path = os.path.join(
            os.path.dirname(__file__), "data",
            "opensearch-build-windows-1.3.0.yml")
        self.manifest_distribution = BuildManifest.from_path(
            manifest_distribution_path)
        self.bundle_recorder_distribution = BundleRecorder(
            self.manifest_distribution.build, "output_dir", "artifacts_dir",
            BundleFileLocation("bundle_output_dir", "opensearch", "tar"))

    def test_record_component(self) -> None:
        component = BuildComponent({
            "name": "job_scheduler",
            "repository":
            "https://github.com/opensearch-project/job_scheduler",
            "ref": "main",
            "commit_id": "3913d7097934cbfe1fdcf919347f22a597d00b76",
            "artifacts": [],
            "version": "1.0",
        })
        self.bundle_recorder.record_component(component, "plugins")

        self.assertEqual(
            self.bundle_recorder.get_manifest().to_dict(),
            {
                "build": {
                    "platform":
                    "linux",
                    "architecture":
                    "x64",
                    "distribution":
                    "tar",
                    "id":
                    "c3ff7a232d25403fa8cc14c97799c323",
                    "location":
                    os.path.join("bundle_output_dir", "tar", "dist",
                                 "opensearch",
                                 "opensearch-1.1.0-linux-x64.tar.gz"),
                    "name":
                    "OpenSearch",
                    "version":
                    "1.1.0",
                },
                "components": [{
                    "commit_id":
                    "3913d7097934cbfe1fdcf919347f22a597d00b76",
                    "location":
                    os.path.join("bundle_output_dir", "tar", "builds",
                                 "opensearch", "plugins"),
                    "name":
                    component.name,
                    "ref":
                    "main",
                    "repository":
                    "https://github.com/opensearch-project/job_scheduler",
                }],
                "schema-version":
                "1.1",
            },
        )

    def test_get_manifest(self) -> None:
        manifest = self.bundle_recorder.get_manifest()
        self.assertIs(type(manifest), BundleManifest)
        self.assertEqual(
            manifest.to_dict(),
            {
                "build": {
                    "platform":
                    "linux",
                    "architecture":
                    "x64",
                    "distribution":
                    "tar",
                    "id":
                    "c3ff7a232d25403fa8cc14c97799c323",
                    "location":
                    os.path.join("bundle_output_dir", "tar", "dist",
                                 "opensearch",
                                 "opensearch-1.1.0-linux-x64.tar.gz"),
                    "name":
                    "OpenSearch",
                    "version":
                    "1.1.0",
                },
                "schema-version": "1.1",
            },
        )

    def test_get_manifest_distribution(self) -> None:
        manifest = self.bundle_recorder_distribution.get_manifest()
        self.assertIs(type(manifest), BundleManifest)
        self.assertEqual(
            manifest.to_dict(),
            {
                "build": {
                    "platform":
                    "windows",
                    "architecture":
                    "x64",
                    "distribution":
                    "zip",
                    "id":
                    "c3ff7a232d25403fa8cc14c97799c323",
                    "location":
                    os.path.join("bundle_output_dir", "tar", "dist",
                                 "opensearch",
                                 "opensearch-1.3.0-windows-x64.zip"),
                    "name":
                    "OpenSearch",
                    "version":
                    "1.3.0",
                },
                "schema-version": "1.1",
            },
        )

    def test_write_manifest(self) -> None:
        with TemporaryDirectory() as dest_dir:
            self.bundle_recorder.write_manifest(dest_dir.name)
            manifest_path = os.path.join(dest_dir.name, "manifest.yml")
            self.assertTrue(os.path.isfile(manifest_path))
            data = self.bundle_recorder.get_manifest().to_dict()
            with open(manifest_path) as f:
                self.assertEqual(yaml.safe_load(f), data)

    def test_record_component_public(self) -> None:
        self.bundle_recorder = BundleRecorder(
            self.manifest.build, "output_dir", "artifacts_dir",
            BundleUrlLocation(
                "https://ci.opensearch.org/ci/ci-env-prod/job-name-opensearch/1.2.0/build-123/platform-mac/arch-amd64/",
                "opensearch", "tar"))

        component = BuildComponent({
            "name": "job_scheduler",
            "repository":
            "https://github.com/opensearch-project/job_scheduler",
            "ref": "main",
            "commit_id": "3913d7097934cbfe1fdcf919347f22a597d00b76",
            "artifacts": [],
            "version": "1.0",
        })

        self.bundle_recorder.record_component(component, "plugins")

        self.assertEqual(
            self.bundle_recorder.get_manifest().to_dict(),
            {
                "build": {
                    "platform":
                    "linux",
                    "architecture":
                    "x64",
                    "distribution":
                    "tar",
                    "id":
                    "c3ff7a232d25403fa8cc14c97799c323",
                    "location":
                    ("https://ci.opensearch.org/ci/ci-env-prod/job-name-opensearch/1.2.0/build-123/platform-mac/arch-amd64/tar/"
                     "dist/opensearch/opensearch-1.1.0-linux-x64.tar.gz"),
                    "name":
                    "OpenSearch",
                    "version":
                    "1.1.0",
                },
                "components": [{
                    "commit_id":
                    "3913d7097934cbfe1fdcf919347f22a597d00b76",
                    "location":
                    "https://ci.opensearch.org/ci/ci-env-prod/job-name-opensearch/1.2.0/build-123/platform-mac/arch-amd64/tar/builds/opensearch/plugins",
                    "name":
                    component.name,
                    "ref":
                    "main",
                    "repository":
                    "https://github.com/opensearch-project/job_scheduler",
                }],
                "schema-version":
                "1.1",
            },
        )

    def test_package_name(self) -> None:
        self.assertEqual(self.bundle_recorder.package_name,
                         "opensearch-1.1.0-linux-x64.tar.gz")