Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Testing the Tuque installation

  • Tuque installation is simple enough that it does not require a stand alone test. You will know it's working as you test the Islandora Core Module installation on milestone 5. The test is the green check mark in /admin/islandora/configure. It is as simple as that.

     

  • You will require phpunit, which in turn has changed the installation method since ubuntu 12.04. You can find more information on how to install phpunit with composer here: https://coderwall.com/p/88x20g/installing-phpunit-on-ubuntu-with-composer
  • Download and modify https://github.com/Islandora/tuque/blob/1.x/tests/phpunit.xml to have the credentials and URL of your Fedora: /var/www/sites/all/libraries/tuque/tests/phpunit.xml (don't forget the FEDORAPASS value)

    Code Block
    languagebash
    <phpunit>
      <php>
        <const name="FEDORAURL" value="http://localhost:8080/fedora"/>
        <const name="FEDORAUSER" value="fedoraAdmin"/>
        <const name="FEDORAPASS" value="wei9bo0eethooD"/>
      </php>
      <logging>
        <log type="coverage-html" target="../build/coverage" title="Tuque"
             charset="UTF-8" yui="true" highlight="true"
             lowUpperBound="35" highLowerBound="70"/>
        <log type="coverage-clover" target="../build/logs/clover.xml"/>
        <log type="junit" target="../build/logs/junit.xml" logIncompleteSkipped="false"/>
      </logging>
    </phpunit>
  • From your Tuque install directory run the test:

    Code Block
    languagebash
    # cd /var/www/drupal/sites/all/libraries/tuque
    # phpunit -c tests/phpunit.xml tests/
  • If the majority of tests fail with HttpConnectionException: Unauthorized, just delete your $FEDORA_HOME/data/fedora-xacml-policies/repository-policies/default directory, and restart Tomcat, it will repopulate itself. Do make sure to backup any customizations to your policies before you do that.

    You can also reload your policies with the fedora-reload-policies.sh in $FEDORA_HOME/server/bin

     

    WarningNOTE: Tuque should pass the majority of the tests. If you see partial failure your installation may still work for most part, however you may want to contact the support community for help so to ensure you get 100% pass.

Advanced Tuque Topics

For advanced usage of Tuque you can consult the All About Tuque Appendix.

...