Skip to content

1.6.0 Test Plan

mickael e edited this page Oct 5, 2020 · 17 revisions

QA plan

  • NUC5s
  • NUC7s
  • Mac Minis
  • 1U test servers

1.6.0 QA Checklist

For both upgrades and fresh installs, here is a list of functionality that requires testing. You can use this for copy/pasting into your QA report. Note that in order to test #5483, you should select multiple languages when running ./securedrop-admin sdconfig.

If you have submitted a QA report already for a 1.6.0 release candidate with successful basic server testing and application acceptance testing sections, then you can skip these sections in subsequent reports, unless otherwise indicated by the Release Manager. This is to ensure that you focus your QA effort on the 1.6.0-specific changes as well as changes since the previous release candidate.

Environment

  • Install target:
  • Tails version:
  • Test Scenario:
  • SSH over Tor:
  • Onion service version:
  • Release candidate:
  • General notes:

Basic Server Testing

  • I can access both the source and journalist interfaces
  • I can SSH into both machines over Tor
  • AppArmor is loaded on app
    • 0 processes are running unconfined
  • AppArmor is loaded on mon
    • 0 processes are running unconfined
  • Both servers are running grsec kernels
  • iptables rules loaded
  • OSSEC emails begin to flow after install
  • OSSEC emails are decrypted to correct key and I am able to decrypt them
  • After installing the testinfra dependencies, all tests in ./securedrop-admin verify are passing:
    • Install dependencies on Admin Workstation with cd ~/Persistent/securedrop && ./securedrop-admin setup -t
    • Run tests with ./securedrop-admin verify (this will take a while)
    • Remove test dependencies: rm -rf admin/.venv3/ && ./securedrop-admin setup
  • QA Matrix checks pass

Command Line User Generation

  • Can successfully add admin user and login

Administration

  • I have backed up and successfully restored the app server following the backup documentation
  • If doing upgrade testing, make a backup on 1.5.0 and restore this backup on 1.6.0
  • "Send Test OSSEC Alert" button in the journalist triggers an OSSEC alert and an email is sent
  • Can successfully add journalist account with HOTP authentication

Application Acceptance Testing

Source Interface

Landing page base cases
  • JS warning bar does not appear when using Security Slider high
  • JS warning bar does appear when using Security Slider Low
First submission base cases
  • On generate page, refreshing codename produces a new 7-word codename
  • On submit page, empty submissions produce flashed message
  • On submit page, short message submitted successfully
  • On submit page, file greater than 500 MB produces "The connection was reset" in Tor Browser quickly before the entire file is uploaded
  • On submit page, file less than 500 MB submitted successfully
Returning source base cases
  • Nonexistent codename cannot log in
  • Empty codename cannot log in
  • Legitimate codename can log in
  • Returning user can view journalist replies - need to log into journalist interface to test

Journalist Interface

Login base cases
  • Can log in with 2FA tokens
  • incorrect password cannot log in
  • invalid 2fa token cannot log in
  • 2fa immediate reuse cannot log in
  • Journalist account with HOTP can log in
Index base cases
  • Filter by codename works
  • Starring and unstarring works
  • Click select all selects all submissions
  • Selecting all and clicking "Download" works
Individual source page
  • You can submit a reply and a flashed message and new row appears
  • You cannot submit an empty reply
  • Clicking "Delete Source And Submissions" and the source and docs are deleted
  • You can click on a document and successfully decrypt using application private key

Basic Tails Testing

Updater GUI

After updating to this release candidate and running securedrop-admin tailsconfig

  • The Updater GUI appears on boot
  • Updating occurs without issue

1.6.0 release-specific changes

  • testinfra tests (when running in Tails) are passing (#5318) (note: also moved this in the basic server testing section for posterity)
  • ./securedrop-admin install completed successfully without the “Timed out waiting for last boot time check" message (#5401)
  • tor --version returns 0.4.4.5 on app and mon servers (#5502)
  • The Show password message is internationalized on the Journalist Interface (#5483) (NOTE: Can't test until the strings are merged)
  • Submit a file as a source. Send two replies as a journalist. SSH into the app server, delete a single reply in /var/lib/securedrop/store
    • the source can return to the source interface (/lookup) page and see one reply.
    • If enabled, the source error logs should also contain an error indicating that the deleted reply file is missing.

Journalist API changes

  • /users endpoint works as expected and does not include is_admin (#5506)
  • seen/unseen (bolded) behavior in the JI works as expected (downloaded/not downloaded) (#5505)
  • Test the new /seen endpoint (#5513).
    • Visit the source interface and submit a file and a message.

    • Store the journalist interface URL in the JI environment variable, e.g. export JI=http://your-JI-address-here.onion

    • Create a new journalist account with manage.py add-journalist

    • Get an API token with it (using its actual credentials, of course):

      export TOKEN=$(torify curl -s -X POST -H "Content-Type: application/json" --data '{"username":"journalist","passphrase":"correct horse battery
      staple profanity oil chewy","one_time_code":"935664"}' ${JI}/api/v1/token | jq -r .token)
      
    • List current submissions:

      torify curl -s -X GET -H "Content-Type: application/json" -H "Authorization: Token $TOKEN" ${JI}/api/v1/submissions | jq
      

      All should have a seen_by property, but the new journalist's UUID should not appear in any of them.

    • Mark the message you submitted as a source seen (correct the UUID in the command below):

      torify curl -is -X POST -H "Content-Type: application/json" -H "Authorization: Token $TOKEN" --data '{"messages": ["e711d29d-d0a1-440f-80e4-6642b77ec3ea"]}' ${JI}/api/v1/seen
      

      The status should be 200, the response {"message":"resources marked seen"}.

    • Mark the same message seen again. There should be no error.

    • Retrieve /submissions again. The message's seen_by list should now contain your journalist account's UUID.

    • Visit the source of the message in the journalist interface. The message you marked should not be listed in bold text. Clicking "Select unread" should not select that message.

    • Visit the source list in the journalist interface. Select the source of the message you marked and click "Download Unread". The zip file you receive should not contain the seen message.

    • Now submit the same request, but specifying that the UUID belongs to a file:

      torify curl -s -X POST -H "Content-Type: application/json" -H "Authorization: Token $TOKEN" --data '{"files": ["e711d29d-d0a1-440f-80e4-6642b77ec3ea"]}' ${JI}/api/v1/seen
      

      The status should be 404, the response {"error":"Not Found","message":"file not found: e711d29d-d0a1-440f-80e4-6642b77ec3ea"}.

    • Repeat the same checks for the submitted file.

    • In the journalist interface, reply to your test source.

    • Create another journalist account.

    • Get another API token for the second journalist account.

    • Retrieve the list of all replies:

      torify curl -s -X GET -H "Content-Type: application/json" -H "Authorization: Token $TOKEN" ${JI}/api/v1/replies | jq
      

      Only the UUID of the journalist that replied should be listed in the reply's seen_by list.

    • Mark the reply read by the second journalist:

      torify curl -is -X POST -H "Content-Type: application/json" -H "Authorization: Token $TOKEN" --data '{"replies": ["06bed593-f2d6-46eb-b85f-23adc7ea290d"]}' ${JI}/api/v1/seen
      
    • Hit /replies again and confirm that the second journalist's UUID appears in the reply's seen_by list.

Packaging changes

  • The virtual environment is correctly populated with the expected wheels required for the SecureDrop App (#5484). Running source /opt/venvs/securedrop-app-code/bin/activate to activate the venv, and running pip freeze --all will return the same dependencies and versions as https://github.com/freedomofpress/securedrop/blob/9d00789fe7b4ca3cdb8fca5ec8c7b78f9b6cd4dd/securedrop/requirements/python3/securedrop-app-code-requirements.txt.
  • Verify that the Debian packaging properly cleans an installed Python requirement that has been removed from the package (#5487).
    • Log in to the app server and list the contents of a requirement which we'll delete:

      ls -alR /opt/venvs/securedrop-app-code/lib/python3.5/site-packages/psutil
      

      There should be .pyc files there.

    • In your working copy with the release branch checked out, comment out the psutil lines in securedrop/requirements/python3/securedrop-app-code-requirements.txt, and run make build-debs.

    • Use scp to copy the securedrop-app-code .deb to the app server, and install it with apt install /path/to/deb.

    • On the app server, list the psutil path above. There should be no .pyc files.

Test 5549 (RC2-only)

  • on the Source interface, submit multiple messages (3+) as a source
  • on the Journalist interface, reply to the source
  • log into app server and delete the reply file and the first message (with filename 1-something-something-msg.gpg) from the source's directory in /var/lib/securedrop/store
  • in the Journalist interface, on the source's collection page, select the reply, the first message, and one other message, and click Delete Selected and then Delete in the modal:
    • Deletion completes with all selected submissions removed from the list
    • in staging, errors are logged in /var/log/apache2/journalist-error.log for both missing files
    • In staging, an error is logged listing the total number of disconnected db entries
  • click Delete Source and Submissions and then Delete in the modal
    • the source collection is deleted and the source is no longer listed in the all sources page
    • the source directory no longer exists in /var/lib/securedrop/store

Upgrade testing only:

Preflight

  • Ensure the builder image is up-to-date on release day

These tests should be performed the day of release prior to live debian packages on apt.freedom.press

Basic testing

  • Install or upgrade occurs without error
  • Source interface is available and version string indicates it is 1.6.0
  • A message can be successfully submitted

Tails

  • The updater GUI appears on boot
  • The update successfully occurs to 1.6.0
  • After reboot, updater GUI no longer appears
Clone this wiki locally