Skip to content

Latest commit

 

History

History
142 lines (97 loc) · 4.94 KB

TESTING.md

File metadata and controls

142 lines (97 loc) · 4.94 KB

Testing a plugin README

The plugins project supports the process from a built plugin with a tarball and an xml metadata file to a plugin available in the plugin installer. This document introduces some tools and outlines the process.

The document assumes that there is a new plugin build available in /path/to/plugin. Assuming the plugin is oesenc_pi, this means that here is two files like oesenc-pi-1.2.0-3-flatpak-18.08.tar.gz and oesenc-plugin-flatpak-18.08.xml.

Examples assumes linux. Using other platforms is fine, but some paths will be different.

Checking tarball layout

Unpack the tarball with something like tar xf /path/to/plugin/build/oesenc-pi-1.2.0-3-flatpak-18.08.tar.gz. This will create a new directory like oesenc-pi-1.2.0-3-flatpak-18.08. Check that the directory tree layout matches the specs in the wiki

Local installation

The new tarball can be installed directly using the Import Plugin in the plugins tab in OpenCPN

Checking xml file basic syntax

Check that the new xml file is well-formed XML using

$ xmllint --schema ocpn-plugin.xsd \
     path/to/plugin/build/oesenc-plugin-flatpak-18.08.xml

Checking urls in the xml file

To be usable, the tarball needs to be uploaded to some location on the web. The xml metadata file contains an url to this tarball location.

Check that all urls in the xml file are sane:

$ python tools/check-metadata-urls  \
     /path/to/plugin/build/oesenc-plugin-flatpak-18.08.xml

Create a new ocpn-plugins.xml

This process is only required if a new ocpn-plugins.xml is needed. The current OpenCPN version supports importing a tarball directly using the Import Plugin button, which usually is sufficient to test a plugin.

Should a new, modified ocpn-plugins.xml be required anyway first create a private set of xml source files:

$ python tools/ocpn-metadata copy
New xml sources copied to /home/al/.opencpn/plugins-metadata

Then copy the new xml file into this set:

$ cp /path/to/plugin/build/oesenc-plugin-flatpak-18.08.xml \
      /home/al/.opencpn/plugins-metadata

and rebuild ocpn-plugins.xml:

$ python ocpn-metadata generate
Generated new ocpn-plugins.xml at /home/al/.opencpn/ocpn-plugins.xml

Publish a private catalog

A developer can publish a private catalog. This is a test tool not aimed regular users. The basic steps are

  • Make sure the extended Catalog Settings UI is available
  • Make sure user has a private clone of the OpenCPN/plugins project.
  • Create a new catalog a. k. a. ocpn-plugins.xml
  • Publish the catalog
  • Obtain the published catalog url
  • Use the url as a Custom URL in the Catalog Settings window.

The details:

  1. Start OpenCPN and go to Settings | Plugins. Push the Settings button bottom-right. If instructed, add CatalogExpert=1 to the configuration file, right under the [PlugIns]section. Check again that Settings | Plugins | Settings displays a new window.

  2. If not done already: git clone https://github.com/OpenCPN/plugins.git

  3. In the plugins clone add modified metadata files to the metadata directory. Add and commit:

    $ git add metadata
    $ git commit -m "metadata: Updating my plugin."
    
  4. Still in the plugins clone create the new catalog using

    $ python tools/ocpn-metadata generate --userdir metadata \
          --destfile ocpn-plugins.xml --force
    
  5. Add, commit and push the updated catalog:

    $ git add  ocpn-plugins.xml
    $ git commit --no-verify -m "Catalog: testing my plugin."
    $ git push origin master:master
    

    This assumes working with the master branch, by no means necessary.

  6. Direct the web browser to the github plugins clone, click on the updated ocpn-plugins.xml file. Click the top-right Raw button

  7. The web browser URL window will display an url like https://github.com/raw/some-user/plugins/master/ocpn-plugins.xml This is the custom url, take a note or just copy it.

  8. Use the url in OpenCPN Settings | Plugins | Settings. The top pane contains a Select Plugin Catalog drop-down; choose Custom and paste the url from previous step into the url area.

Check xml syntax:

Check the generated file for syntax errors

$ xmllint --schema ocpn-plugins.xsd  ~/.opencpn/ocpn-plugins.xml --noout

Test the new catalog:

Done like in Create a new ocpn-plugins.xml, the generated ocpn-plugins.xml will be used when copied to the User config path as described in the wiki. The new catalog will be used when opencpn is started as long as the plugin catalog isn't updated.

The catalog can also be uploaded on the web and used as Custom URL in the plugin installer GUI.