diff options
author | Philip Hands <phil@hands.com> | 2016-03-14 15:36:16 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-04-28 21:52:10 +0200 |
commit | da080c472fc415b0ce918f4dd4a1ab143bb1bca4 (patch) | |
tree | bf63179f32f0eda0c2d5796e3e31c18c3c1185cf /features/evince.feature | |
parent | 26a9e8ec2bcae03db4d663d87b44d8708d64fdc2 (diff) | |
download | jenkins.debian.net-da080c472fc415b0ce918f4dd4a1ab143bb1bca4.tar.xz |
rough attempt to grab the good cucumber bits from recent tails
Diffstat (limited to 'features/evince.feature')
-rw-r--r-- | features/evince.feature | 67 |
1 files changed, 40 insertions, 27 deletions
diff --git a/features/evince.feature b/features/evince.feature index fe687f3a..6fd27eca 100644 --- a/features/evince.feature +++ b/features/evince.feature @@ -4,50 +4,63 @@ Feature: Using Evince I want to view and print PDF files in Evince And AppArmor should prevent Evince from doing dangerous things - Background: - Given a computer - And I start Tails from DVD with network unplugged and I login - And I save the state so the background can be restored next scenario - + #10994 + @fragile Scenario: I can view and print a PDF file stored in /usr/share + Given I have started Tails from DVD without network and logged in When I open "/usr/share/cups/data/default-testpage.pdf" with Evince - Then I see "CupsTestPage.png" after at most 10 seconds + Then I see "CupsTestPage.png" after at most 20 seconds And I can print the current document to "/home/amnesia/output.pdf" + #10994 + @fragile Scenario: I can view and print a PDF file stored in non-persistent /home/amnesia - Given I copy "/usr/share/cups/data/default-testpage.pdf" to "/home/amnesia" as user "amnesia" + Given I have started Tails from DVD without network and logged in + And I copy "/usr/share/cups/data/default-testpage.pdf" to "/home/amnesia" as user "amnesia" When I open "/home/amnesia/default-testpage.pdf" with Evince - Then I see "CupsTestPage.png" after at most 10 seconds + Then I see "CupsTestPage.png" after at most 20 seconds And I can print the current document to "/home/amnesia/output.pdf" Scenario: I cannot view a PDF file stored in non-persistent /home/amnesia/.gnupg - Given I copy "/usr/share/cups/data/default-testpage.pdf" to "/home/amnesia/.gnupg" as user "amnesia" + Given I have started Tails from DVD without network and logged in + And I copy "/usr/share/cups/data/default-testpage.pdf" to "/home/amnesia/.gnupg" as user "amnesia" + Then the file "/home/amnesia/.gnupg/default-testpage.pdf" exists + And the file "/lib/live/mount/overlay/home/amnesia/.gnupg/default-testpage.pdf" exists + And the file "/live/overlay/home/amnesia/.gnupg/default-testpage.pdf" exists + Given I start monitoring the AppArmor log of "/usr/bin/evince" When I try to open "/home/amnesia/.gnupg/default-testpage.pdf" with Evince Then I see "EvinceUnableToOpen.png" after at most 10 seconds + And AppArmor has denied "/usr/bin/evince" from opening "/home/amnesia/.gnupg/default-testpage.pdf" + When I close Evince + Given I restart monitoring the AppArmor log of "/usr/bin/evince" + When I try to open "/lib/live/mount/overlay/home/amnesia/.gnupg/default-testpage.pdf" with Evince + Then I see "EvinceUnableToOpen.png" after at most 10 seconds + And AppArmor has denied "/usr/bin/evince" from opening "/lib/live/mount/overlay/home/amnesia/.gnupg/default-testpage.pdf" + When I close Evince + Given I restart monitoring the AppArmor log of "/usr/bin/evince" + When I try to open "/live/overlay/home/amnesia/.gnupg/default-testpage.pdf" with Evince + Then I see "EvinceUnableToOpen.png" after at most 10 seconds + # Due to our AppArmor aliases, /live/overlay will be treated + # as /lib/live/mount/overlay. + And AppArmor has denied "/usr/bin/evince" from opening "/lib/live/mount/overlay/home/amnesia/.gnupg/default-testpage.pdf" - @keep_volumes - Scenario: Installing Tails on a USB drive, creating a persistent partition, copying PDF files to it - Given the USB drive "current" contains Tails with persistence configured and password "asdf" - And a computer - And I start Tails from USB drive "current" with network unplugged and I login with persistence password "asdf" + #10720: Tails Installer freezes on Jenkins + @fragile + Scenario: I can view and print a PDF file stored in persistent /home/amnesia/Persistent + Given I have started Tails without network from a USB drive with a persistent partition enabled and logged in And I copy "/usr/share/cups/data/default-testpage.pdf" to "/home/amnesia/Persistent" as user "amnesia" Then the file "/home/amnesia/Persistent/default-testpage.pdf" exists - And I copy "/usr/share/cups/data/default-testpage.pdf" to "/home/amnesia/.gnupg" as user "amnesia" - Then the file "/home/amnesia/.gnupg/default-testpage.pdf" exists - And I shutdown Tails and wait for the computer to power off - - @keep_volumes - Scenario: I can view and print a PDF file stored in persistent /home/amnesia/Persistent - Given a computer - And I start Tails from USB drive "current" with network unplugged and I login with persistence password "asdf" When I open "/home/amnesia/Persistent/default-testpage.pdf" with Evince - Then I see "CupsTestPage.png" after at most 10 seconds + Then I see "CupsTestPage.png" after at most 20 seconds And I can print the current document to "/home/amnesia/Persistent/output.pdf" - @keep_volumes + #10720: Tails Installer freezes on Jenkins + @fragile Scenario: I cannot view a PDF file stored in persistent /home/amnesia/.gnupg - Given a computer - When I start Tails from USB drive "current" with network unplugged and I login with persistence password "asdf" + Given I have started Tails without network from a USB drive with a persistent partition enabled and logged in + And I copy "/usr/share/cups/data/default-testpage.pdf" to "/home/amnesia/.gnupg" as user "amnesia" + Then the file "/home/amnesia/.gnupg/default-testpage.pdf" exists + Given I start monitoring the AppArmor log of "/usr/bin/evince" And I try to open "/home/amnesia/.gnupg/default-testpage.pdf" with Evince Then I see "EvinceUnableToOpen.png" after at most 10 seconds - + And AppArmor has denied "/usr/bin/evince" from opening "/home/amnesia/.gnupg/default-testpage.pdf" |