예제 #1
0
    def test_appstream(self):
        file_name = "foo.{}".format(self.file_extension)
        attributes = " ".join(
            '{attribute_name}="{attribute_value}"'.format(
                attribute_name=attribute, attribute_value=self.attributes[attribute]
            )
            for attribute in self.attributes
        )
        with open(file_name, "w") as f:
            f.write(
                textwrap.dedent(
                    """\
                <?xml version="1.0" encoding="UTF-8"?>
                <component>
                  <{key} {attributes}>{value}</{key}>
                </component>""".format(
                        key=self.key, value=self.value, attributes=attributes
                    )
                )
            )

        kwargs = {self.param_name: self.value}
        expected = ExtractedMetadata(**kwargs)

        self.assertThat(appstream.extract(file_name), Equals(expected))
예제 #2
0
    def test_appstream_with_multiple_launchables(self):
        with open("foo.metainfo.xml", "w") as f:
            f.write(
                textwrap.dedent("""\
                <?xml version="1.0" encoding="UTF-8"?>
                <component>
                  <launchable type="desktop-id">
                    com.example.test-app1.desktop
                  </launchable>
                  <launchable type="test-wrong-type">
                    dummy
                  </launchable>
                  <launchable type="desktop-id">
                    com.example.test-app2.desktop
                  </launchable>
                  <launchable type="desktop-id">
                    unexisting
                  </launchable>
                </component>"""))

        _create_desktop_file(
            "usr/local/share/applications/com.example.test/app1.desktop")
        _create_desktop_file(
            "usr/local/share/applications/com.example.test/app2.desktop")

        expected = [
            "usr/local/share/applications/com.example.test/app1.desktop",
            "usr/local/share/applications/com.example.test/app2.desktop",
        ]
        extracted = appstream.extract("foo.metainfo.xml", workdir=".")

        self.assertThat(extracted.get_desktop_file_paths(), Equals(expected))
예제 #3
0
    def test_appstream_with_multiple_launchables(self):
        with open("foo.metainfo.xml", "w") as f:
            f.write(
                textwrap.dedent(
                    """\
                <?xml version="1.0" encoding="UTF-8"?>
                <component>
                  <launchable type="desktop-id">
                    com.example.test-app1.desktop
                  </launchable>
                  <launchable type="test-wrong-type">
                    dummy
                  </launchable>
                  <launchable type="desktop-id">
                    com.example.test-app2.desktop
                  </launchable>
                  <launchable type="desktop-id">
                    unexisting
                  </launchable>
                </component>"""
                )
            )

        os.makedirs("usr/local/share/applications/com.example.test/")
        open("usr/local/share/applications/com.example.test/app1.desktop", "w").close()
        open("usr/local/share/applications/com.example.test/app2.desktop", "w").close()

        expected = ExtractedMetadata(
            desktop_file_paths=[
                "usr/local/share/applications/com.example.test/app1.desktop",
                "usr/local/share/applications/com.example.test/app2.desktop",
            ]
        )

        self.assertThat(appstream.extract("foo.metainfo.xml"), Equals(expected))
예제 #4
0
    def test_appstream_with_multiple_launchables(self):
        with open('foo.metainfo.xml', 'w') as f:
            f.write(textwrap.dedent("""\
                <?xml version="1.0" encoding="UTF-8"?>
                <component>
                  <launchable type="desktop-id">
                    com.example.test-app1.desktop
                  </launchable>
                  <launchable type="test-wrong-type">
                    dummy
                  </launchable>
                  <launchable type="desktop-id">
                    com.example.test-app2.desktop
                  </launchable>
                  <launchable type="desktop-id">
                    unexisting
                  </launchable>
                </component>"""))

        os.makedirs('usr/local/share/applications/com.example.test/')
        open('usr/local/share/applications/com.example.test/app1.desktop',
             'w').close()
        open('usr/local/share/applications/com.example.test/app2.desktop',
             'w').close()

        expected = ExtractedMetadata(
            desktop_file_paths=[
                'usr/local/share/applications/com.example.test/app1.desktop',
                'usr/local/share/applications/com.example.test/app2.desktop'])

        self.assertThat(
            appstream.extract('foo.metainfo.xml'), Equals(expected))
예제 #5
0
    def test_appstream_with_comments(self):
        file_name = "foo.appdata.xml"
        content = textwrap.dedent("""\
            <?xml version="1.0" encoding="UTF-8"?>
              <component type="desktop">
              <id>com.github.maoschanz.drawing</id>
              <metadata_license>CC0-1.0</metadata_license>
              <project_license>GPL-3.0-or-later</project_license>
              <content_rating type="oars-1.1"/>
              <!-- TRANSLATORS: the application name -->
              <name>Drawing</name>
              <!-- TRANSLATORS: one-line description for the app -->
              <summary>Draw stuff</summary>
              <description>
                <!-- TRANSLATORS: AppData description marketing paragraph -->
                <p>Command Line Utility to create snaps quickly.</p>
                <p xml:lang="es">Aplicativo de línea de comandos para crear snaps.</p>
                <p>Ordered Features:</p>
                <p xml:lang="es">Funciones:</p>
                <ol>
                  <li>Build snaps.</li>
                  <li xml:lang="es">Construye snaps.</li>
                  <li>Publish snaps to the store.</li>
                  <li xml:lang="es">Publica snaps en la tienda.</li>
                </ol>
                <p>Unordered Features:</p>
                <ul>
                  <li>Build snaps.</li>
                  <li xml:lang="es">Construye snaps.</li>
                  <li>Publish snaps to the store.</li>
                  <li xml:lang="es">Publica snaps en la tienda.</li>
                </ul>
              </description>
              </component>
        """)

        with open(file_name, "w") as f:
            print(content, file=f)

        metadata = appstream.extract(file_name, workdir=".")

        self.expectThat(
            metadata.get_description(),
            Equals(
                textwrap.dedent("""\
            Command Line Utility to create snaps quickly.

            Ordered Features:

            1. Build snaps.
            2. Publish snaps to the store.

            Unordered Features:

            - Build snaps.
            - Publish snaps to the store.""")),
        )
예제 #6
0
    def test_appstream_em(self):
        file_name = "foliate.appdata.xml"
        content = textwrap.dedent("""\
            <?xml version="1.0" encoding="UTF-8"?>
              <component type="desktop">
              <id>com.github.maoschanz.drawing</id>
              <metadata_license>CC0-1.0</metadata_license>
              <project_license>GPL-3.0-or-later</project_license>
              <content_rating type="oars-1.1"/>
              <name>Drawing</name>
              <description>
                <p>Command Line Utility to <em>create snaps</em> quickly.</p>
                <p xml:lang="es">Aplicativo de línea de comandos para crear snaps.</p>
                <p>Ordered Features:</p>
                <p xml:lang="es">Funciones:</p>
                <ol>
                  <li><em>Build snaps</em>.</li>
                  <li xml:lang="es">Construye snaps.</li>
                  <li>Publish snaps to the store.</li>
                  <li xml:lang="es">Publica snaps en la tienda.</li>
                </ol>
                <p>Unordered Features:</p>
                <ul>
                  <li><em>Build snaps</em>.</li>
                  <li xml:lang="es">Construye snaps.</li>
                  <li>Publish snaps to the store.</li>
                  <li xml:lang="es">Publica snaps en la tienda.</li>
                </ul>
              </description>
              </component>
        """)

        with open(file_name, "w") as f:
            print(content, file=f)

        metadata = appstream.extract(file_name, workdir=".")

        self.expectThat(
            metadata.get_description(),
            Equals(
                textwrap.dedent("""\
            Command Line Utility to _create snaps_ quickly.

            Ordered Features:

            1. _Build snaps_.
            2. Publish snaps to the store.

            Unordered Features:

            - _Build snaps_.
            - Publish snaps to the store.""")),
        )
예제 #7
0
    def test_launchable(self, tmp_work_path, desktop_file_path):
        with open("foo.metainfo.xml", "w") as f:
            f.write(
                textwrap.dedent("""\
                <?xml version="1.0" encoding="UTF-8"?>
                <component type="desktop">
                  <id>com.example.test-app.desktop</id>
                </component>"""))

        _create_desktop_file(desktop_file_path)

        extracted = appstream.extract("foo.metainfo.xml", workdir=".")

        assert extracted.get_desktop_file_paths() == [desktop_file_path]
예제 #8
0
    def test_appstream(self):
        with open('foo.metainfo.xml', 'w') as f:
            f.write(
                textwrap.dedent("""\
                <?xml version="1.0" encoding="UTF-8"?>
                <component>
                  <{key}>test-{key}</{key}>
                </component>""".format(key=self.key)))

        kwargs = {self.key: 'test-{}'.format(self.key)}
        expected = ExtractedMetadata(**kwargs)

        self.assertThat(appstream.extract('foo.metainfo.xml'),
                        Equals(expected))
예제 #9
0
    def test_appstream_with_launchable(self):
        with open('foo.metainfo.xml', 'w') as f:
            f.write(
                textwrap.dedent("""\
                <?xml version="1.0" encoding="UTF-8"?>
                <component>
                  <launchable type="desktop-id">
                    com.example.test-app.desktop
                  </launchable>
                </component>"""))

        expected = ExtractedMetadata(
            desktop_file_ids=['com.example.test-app.desktop'])

        self.assertThat(appstream.extract('foo.metainfo.xml'),
                        Equals(expected))
예제 #10
0
    def test_appstream_with_launchable(self):
        with open("foo.metainfo.xml", "w") as f:
            f.write(
                textwrap.dedent("""\
                <?xml version="1.0" encoding="UTF-8"?>
                <component type="desktop">
                  <id>com.example.test-app.desktop</id>
                </component>"""))

        os.makedirs(os.path.dirname(self.desktop_file_path))
        open(self.desktop_file_path, "w").close()

        extracted = appstream.extract("foo.metainfo.xml", workdir=".")

        self.assertThat(extracted.get_desktop_file_paths(),
                        Equals([self.desktop_file_path]))
예제 #11
0
    def test_appstream_with_ol(self):
        file_name = "snapcraft.appdata.xml"
        content = textwrap.dedent("""\
            <?xml version="1.0" encoding="utf-8"?>
            <component type="desktop">
              <id>io.snapcraft.snapcraft</id>
              <metadata_license>CC0-1.0</metadata_license>
              <project_license>GPL-3.0</project_license>
              <name>snapcraft</name>
              <name xml:lang="es">snapcraft</name>
              <summary>Create snaps</summary>
              <summary xml:lang="es">Crea snaps</summary>
              <description>
                <p>Command Line Utility to create snaps.</p>
                <p xml:lang="es">Aplicativo de línea de comandos para crear snaps.</p>
                <p>Features:</p>
                <p xml:lang="es">Funciones:</p>
                <ol>
                  <li>Build snaps.</li>
                  <li xml:lang="es">Construye snaps.</li>
                  <li>Publish snaps to the store.</li>
                  <li xml:lang="es">Publica snaps en la tienda.</li>
                </ol>
              </description>
              <provides>
                <binary>snapcraft</binary>
              </provides>
            </component>
        """)

        with open(file_name, "w") as f:
            print(content, file=f)

        metadata = appstream.extract(file_name, workdir=".")

        self.assertThat(metadata.get_summary(), Equals("Create snaps"))
        self.assertThat(
            metadata.get_description(),
            Equals(
                textwrap.dedent("""\
            Command Line Utility to create snaps.

            Features:

            1. Build snaps.
            2. Publish snaps to the store.""")),
        )
예제 #12
0
    def test_appstream_release(self):
        file_name = "foliate.appdata.xml"
        content = textwrap.dedent("""\
            <?xml version="1.0" encoding="UTF-8"?>
            <component type="desktop">
            <releases>
                <release version="1.5.3" date="2019-07-25">
                <description>
                    <ul>
                    <li>Fixed Flatpak version not being able to open .mobi, .azw, and .azw3 files</li>
                    <li>Improved Wiktionary lookup, now with links and example sentences</li>
                    <li>Improved popover footnote extraction and formatting</li>
                    <li>Added option to export annotations to BibTeX</li>
                    </ul>
                </description>
                </release>
                <release version="1.5.2" date="2019-07-19">
                <description>
                    <ul>
                    <li>Fixed table of contents navigation not working with some books</li>
                    <li>Fixed not being able to zoom images with Kindle books</li>
                    <li>Fixed not being able to open books with .epub3 filename extension</li>
                    <li>Fixed temporary directory not being cleaned after closing</li>
                    </ul>
                </description>
                </release>
                <release version="1.5.1" date="2019-07-17">
                <description>
                    <ul>
                    <li>Fixed F9 shortcut not working</li>
                    <li>Updated translations</li>
                    </ul>
                </description>
                </release>
            </releases>
            </component>
        """)

        with open(file_name, "w") as f:
            print(content, file=f)

        metadata = appstream.extract(file_name, workdir=".")

        self.expectThat(metadata.get_version(), Equals("1.5.3"))
예제 #13
0
    def test_appstream_with_launchable(self):
        with open("foo.metainfo.xml", "w") as f:
            f.write(
                textwrap.dedent("""\
                <?xml version="1.0" encoding="UTF-8"?>
                <component>
                  <launchable type="desktop-id">
                    com.example.test-app.desktop
                  </launchable>
                </component>"""))

        os.makedirs(os.path.dirname(self.desktop_file_path))
        open(self.desktop_file_path, "w").close()

        expected = ExtractedMetadata(
            desktop_file_paths=[self.desktop_file_path])

        self.assertThat(appstream.extract("foo.metainfo.xml"),
                        Equals(expected))
예제 #14
0
    def test_appstream(self):
        file_name = 'foo.{}'.format(self.file_extension)
        attributes = ' '.join('{attribute_name}="{attribute_value}"'.format(
            attribute_name=attribute,
            attribute_value=self.attributes[attribute])
                              for attribute in self.attributes)
        with open(file_name, 'w') as f:
            f.write(
                textwrap.dedent("""\
                <?xml version="1.0" encoding="UTF-8"?>
                <component>
                  <{key} {attributes}>{value}</{key}>
                </component>""".format(key=self.key,
                                       value=self.value,
                                       attributes=attributes)))

        kwargs = {self.key: self.value}
        expected = ExtractedMetadata(**kwargs)

        self.assertThat(appstream.extract(file_name), Equals(expected))
예제 #15
0
    def test_appstream_with_launchable(self):
        with open("foo.metainfo.xml", "w") as f:
            f.write(
                textwrap.dedent(
                    """\
                <?xml version="1.0" encoding="UTF-8"?>
                <component>
                  <launchable type="desktop-id">
                    com.example.test-app.desktop
                  </launchable>
                </component>"""
                )
            )

        os.makedirs(os.path.dirname(self.desktop_file_path))
        open(self.desktop_file_path, "w").close()

        expected = ExtractedMetadata(desktop_file_paths=[self.desktop_file_path])

        self.assertThat(appstream.extract("foo.metainfo.xml"), Equals(expected))
예제 #16
0
    def test_appstream_with_launchable(self):
        os.makedirs(self.workdir, exist_ok=True)
        appstream_file = os.path.join(self.workdir, "foo.metainfo.xml")
        with open(appstream_file, "w") as f:
            f.write(
                textwrap.dedent("""\
                <?xml version="1.0" encoding="UTF-8"?>
                <component>
                  <launchable type="desktop-id">
                    com.example.test-app.desktop
                  </launchable>
                </component>"""))

        desktop_file_path = os.path.join(self.workdir, self.desktop_file_path)
        _create_desktop_file(desktop_file_path)

        extracted = appstream.extract("foo.metainfo.xml", workdir=self.workdir)

        self.assertThat(extracted.get_desktop_file_paths(),
                        Equals([self.desktop_file_path]))
예제 #17
0
    def test(self, tmp_work_path, file_extension, key, attributes, param_name,
             value, expect):
        file_name = f"foo.{file_extension}"
        attributes = " ".join('{attribute_name}="{attribute_value}"'.format(
            attribute_name=attribute, attribute_value=attributes[attribute])
                              for attribute in attributes)
        with open(file_name, "w") as f:
            f.write(
                textwrap.dedent("""\
                <?xml version="1.0" encoding="UTF-8"?>
                <component>
                  <{key} {attributes}>{value}</{key}>
                </component>""".format(key=key,
                                       value=value,
                                       attributes=attributes)))

        open("icon.png", "w").close()
        kwargs = {param_name: expect}
        expected = ExtractedMetadata(**kwargs)

        assert appstream.extract(file_name, workdir=".") == expected
예제 #18
0
    def test_appstream_multilang_title(self):
        file_name = "foliate.appdata.xml"
        content = textwrap.dedent("""\
            <?xml version="1.0" encoding="UTF-8"?>
            <component type="desktop">
            <name>Foliate</name>
            <name xml:lang="id_ID">Foliate_id</name>
            <name xml:lang="pt_BR">Foliate_pt</name>
            <name xml:lang="ru_RU">Foliate_ru</name>
            <name xml:lang="nl_NL">Foliate_nl</name>
            <name xml:lang="fr_FR">Foliate_fr</name>
            <name xml:lang="cs_CS">Foliate_cs</name>
            </component>
        """)

        with open(file_name, "w") as f:
            print(content, file=f)

        metadata = appstream.extract(file_name, workdir=".")

        self.expectThat(metadata.get_title(), Equals("Foliate"))
예제 #19
0
    def test_appstream(self):
        file_name = "foo.{}".format(self.file_extension)
        attributes = " ".join('{attribute_name}="{attribute_value}"'.format(
            attribute_name=attribute,
            attribute_value=self.attributes[attribute])
                              for attribute in self.attributes)
        with open(file_name, "w") as f:
            f.write(
                textwrap.dedent("""\
                <?xml version="1.0" encoding="UTF-8"?>
                <component>
                  <{key} {attributes}>{value}</{key}>
                </component>""".format(key=self.key,
                                       value=self.value,
                                       attributes=attributes)))

        open("icon.png", "w").close()
        kwargs = {self.param_name: self.expect}
        expected = ExtractedMetadata(**kwargs)

        self.assertThat(appstream.extract(file_name, workdir="."),
                        Equals(expected))
예제 #20
0
 def _expect_icon(self, icon):
     expected = ExtractedMetadata(icon=icon)
     actual = appstream.extract("foo.appdata.xml", workdir=".")
     self.assertThat(actual.get_icon(), Equals(expected.get_icon()))
예제 #21
0
    def test_appstream_with_ul_in_p(self):
        file_name = "snapcraft.appdata.xml"
        content = textwrap.dedent("""\
            <?xml version="1.0" encoding="UTF-8"?>
              <component type="desktop">
              <id>com.github.maoschanz.drawing</id>
              <metadata_license>CC0-1.0</metadata_license>
              <project_license>GPL-3.0-or-later</project_license>
              <content_rating type="oars-1.1"/>
              <name>Drawing</name>
              <name xml:lang="tr">Çizim</name>
              <name xml:lang="pt_BR">Drawing</name>
              <summary>A drawing application for the GNOME desktop</summary>
              <summary xml:lang="pt_BR">Uma aplicacao de desenho para o ambiente GNOME</summary>
              <summary xml:lang="nl">Een tekenprogramma voor de GNOME-werkomgeving</summary>
              <description>
                <p>"Drawing" is a basic image editor, supporting PNG, JPEG and BMP file types.</p>
                <p xml:lang="pt_BR">"Drawing" e um simples editor de imagens, que suporta arquivos PNG,JPEG e BMP</p>
                <p xml:lang="nl">"Tekenen" is een eenvoudige afbeeldingsbewerker, met ondersteuning voor PNG, JPEG en BMP.</p>
                <p xml:lang="fr">"Dessin" est un éditeur d'images basique, qui supporte les fichiers de type PNG, JPEG ou BMP.</p>
                <p>It allows you to draw or edit pictures with tools such as:
                  <ul>
                    <li>Pencil (with various options)</li>
                    <li xml:lang="pt_BR">Lápis (Com varias opções)</li>
                    <li xml:lang="nl">Potlood (verschillende soorten)</li>
                    <li xml:lang="fr">Crayon (avec diverses options)</li>
                    <li>Selection (cut/copy/paste/drag/…)</li>
                    <li xml:lang="tr">Seçim (kes/kopyala/yapıştır/sürükle /…)</li>
                    <li xml:lang="ru">Выделение (вырезать/копировать/вставить/перетащить/…)</li>
                    <li xml:lang="pt_BR">Seleção (cortar/copiar/colar/arrastar/…)</li>
                    <li xml:lang="nl">Selectie (knippen/kopiëren/plakken/verslepen/...)</li>
                    <li xml:lang="it">Selezione (taglia/copia/incolla/trascina/…)</li>
                    <li xml:lang="he">בחירה (חתיכה/העתקה/הדבקה/גרירה/...)</li>
                    <li xml:lang="fr">Sélection (copier/coller/déplacer/…)</li>
                    <li xml:lang="es">Selección (cortar/copiar/pegar/arrastrar/…)</li>
                    <li xml:lang="de_DE">Auswahl (Ausschneiden/Kopieren/Einfügen/Ziehen/...)</li>
                    <li>Line, Arc (with various options)</li>
                    <li xml:lang="pt_BR">Linha, Arco (com varias opcoes)</li>
                    <li xml:lang="nl">Lijn, Boog (verschillende soorten)</li>
                    <li xml:lang="fr">Trait, Arc (avec diverses options)</li>
                    <li>Shapes (rectangle, circle, polygon, …)</li>
                    <li xml:lang="pt_BR">Formas (retângulo, circulo, polígono, …)</li>
                    <li xml:lang="nl">Vormen (vierkant, cirkel, veelhoek, ...)</li>
                    <li xml:lang="fr">Formes (rectangle, cercle, polygone, …)</li>
                    <li>Text insertion</li>
                    <li xml:lang="pt_BR">Inserção de texto</li>
                    <li xml:lang="nl">Tekst invoeren</li>
                    <li xml:lang="fr">Insertion de texte</li>
                    <li>Resizing, cropping, rotating</li>
                    <li xml:lang="pt_BR">Redimencionar, cortar, rotacionar</li>
                    <li xml:lang="nl">Afmetingen wijzigen, bijsnijden, draaien</li>
                    <li xml:lang="fr">Redimensionnement, rognage, rotation</li>
                  </ul>
                </p>
              </description>
              </component>
        """)

        with open(file_name, "w") as f:
            print(content, file=f)

        metadata = appstream.extract(file_name, workdir=".")

        self.expectThat(
            metadata.get_summary(),
            Equals("A drawing application for the GNOME desktop"),
        )
        self.expectThat(
            metadata.get_description(),
            Equals(
                textwrap.dedent("""\
                "Drawing" is a basic image editor, supporting PNG, JPEG and BMP file types.

                It allows you to draw or edit pictures with tools such as:

                - Pencil (with various options)
                - Selection (cut/copy/paste/drag/…)
                - Line, Arc (with various options)
                - Shapes (rectangle, circle, polygon, …)
                - Text insertion
                - Resizing, cropping, rotating""")),
        )