Exemple #1
0
def test_extension_core20():
    kde_neon_extension = ExtensionImpl(extension_name="kde-neon",
                                       yaml_data=dict(base="core20"))

    assert kde_neon_extension.root_snippet == {
        "assumes": ["snapd2.43"],
        "environment": {
            "SNAP_DESKTOP_RUNTIME": "$SNAP/kf5"
        },
        "hooks": {
            "configure": {
                "command-chain":
                ["snap/command-chain/hooks-configure-desktop"],
                "plugs": ["desktop"],
            }
        },
        "plugs": {
            "desktop": {
                "mount-host-font-cache": False
            },
            "icon-themes": {
                "default-provider": "gtk-common-themes",
                "interface": "content",
                "target": "$SNAP/data-dir/icons",
            },
            "kde-frameworks-5-qt-5-15-3-core20": {
                "content": "kde-frameworks-5-qt-5-15-3-core20-all",
                "default-provider": "kde-frameworks-5-qt-5-15-3-core20",
                "interface": "content",
                "target": "$SNAP/kf5",
            },
            "sound-themes": {
                "default-provider": "gtk-common-themes",
                "interface": "content",
                "target": "$SNAP/data-dir/sounds",
            },
        },
    }
    assert kde_neon_extension.app_snippet == {
        "command-chain": ["snap/command-chain/desktop-launch"],
        "plugs": ["desktop", "desktop-legacy", "opengl", "wayland", "x11"],
    }
    assert kde_neon_extension.part_snippet == {
        "build-environment": [{
            "SNAPCRAFT_CMAKE_ARGS":
            "-DCMAKE_FIND_ROOT_PATH=/snap/kde-frameworks-5-qt-5-15-3-core20-sdk/current"
        }]
    }
    assert kde_neon_extension.parts == {
        "kde-neon-extension": {
            "build-packages": ["g++"],
            "build-snaps":
            ["kde-frameworks-5-qt-5-15-3-core20-sdk/latest/stable"],
            "make-parameters":
            ["PLATFORM_PLUG=kde-frameworks-5-qt-5-15-3-core20"],
            "plugin": "make",
            "source": "$SNAPCRAFT_EXTENSIONS_DIR/desktop",
            "source-subdir": "kde-neon",
        }
    }
Exemple #2
0
    def test_extension(self):
        kde_neon_extension = ExtensionImpl(extension_name="kde-neon",
                                           yaml_data=dict(base="core18"))

        self.expectThat(
            kde_neon_extension.root_snippet,
            Equals({
                "plugs": {
                    "icon-themes": {
                        "interface": "content",
                        "target": "$SNAP/data-dir/icons",
                        "default-provider": "gtk-common-themes",
                    },
                    "sound-themes": {
                        "interface": "content",
                        "target": "$SNAP/data-dir/sounds",
                        "default-provider": "gtk-common-themes",
                    },
                    "kde-frameworks-5-plug": {
                        "content": "kde-frameworks-5-core18-all",
                        "interface": "content",
                        "target": "$SNAP/kf5",
                        "default-provider": "kde-frameworks-5-core18",
                    },
                },
                "environment": {
                    "SNAP_DESKTOP_RUNTIME": "$SNAP/kf5"
                },
                "hooks": {
                    "configure": {
                        "plugs": ["desktop"],
                        "command-chain":
                        ["snap/command-chain/hooks-configure-desktop"],
                    }
                },
            }),
        )
        self.expectThat(
            kde_neon_extension.app_snippet,
            Equals({
                "command-chain": ["snap/command-chain/desktop-launch"],
                "plugs": ["desktop", "desktop-legacy", "wayland", "x11"],
            }),
        )
        self.expectThat(kde_neon_extension.part_snippet, Equals(dict()))
        self.expectThat(
            kde_neon_extension.parts,
            Equals({
                "kde-neon-extension": {
                    "source": "$SNAPCRAFT_EXTENSIONS_DIR/desktop",
                    "source-subdir": "kde-neon",
                    "plugin": "make",
                    "build-packages": ["g++"],
                }
            }),
        )
Exemple #3
0
def test_extension_core18():
    kde_neon_extension = ExtensionImpl(extension_name="kde-neon",
                                       yaml_data=dict(base="core18"))

    assert kde_neon_extension.root_snippet == {
        "assumes": ["snapd2.43"],
        "plugs": {
            "icon-themes": {
                "interface": "content",
                "target": "$SNAP/data-dir/icons",
                "default-provider": "gtk-common-themes",
            },
            "sound-themes": {
                "interface": "content",
                "target": "$SNAP/data-dir/sounds",
                "default-provider": "gtk-common-themes",
            },
            "kde-frameworks-5-plug": {
                "content": "kde-frameworks-5-core18-all",
                "interface": "content",
                "target": "$SNAP/kf5",
                "default-provider": "kde-frameworks-5-core18",
            },
        },
        "environment": {
            "SNAP_DESKTOP_RUNTIME": "$SNAP/kf5"
        },
        "hooks": {
            "configure": {
                "plugs": ["desktop"],
                "command-chain":
                ["snap/command-chain/hooks-configure-desktop"],
            }
        },
    }
    assert kde_neon_extension.app_snippet == {
        "command-chain": ["snap/command-chain/desktop-launch"],
        "plugs": ["desktop", "desktop-legacy", "opengl", "wayland", "x11"],
    }
    assert kde_neon_extension.part_snippet == dict()
    assert kde_neon_extension.parts == {
        "kde-neon-extension": {
            "source": "$SNAPCRAFT_EXTENSIONS_DIR/desktop",
            "source-subdir": "kde-neon",
            "plugin": "make",
            "make-parameters": ["PLATFORM_PLUG=kde-frameworks-5-plug"],
            "build-packages": ["g++"],
            "build-snaps": ["kde-frameworks-5-core18-sdk/latest/stable"],
        }
    }
 def test_supported_confinement(self):
     self.assertThat(ExtensionImpl.get_supported_confinement(),
                     Equals(("strict", "devmode")))
 def test_supported_bases(self):
     self.assertThat(ExtensionImpl.get_supported_bases(),
                     Equals(("core18", )))
Exemple #6
0
def test_experimental_core18():
    kde_neon_extension = ExtensionImpl(extension_name="kde-neon",
                                       yaml_data=dict(base="core18"))
    assert kde_neon_extension.is_experimental(base="core18") is False
Exemple #7
0
def test_supported_confinement():
    assert ExtensionImpl.get_supported_confinement() == ("strict", "devmode")
Exemple #8
0
def test_supported_bases():
    assert ExtensionImpl.get_supported_bases() == ("core18", "core20")