File: task.yaml

package info (click to toggle)
snapd 2.72-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 80,412 kB
  • sloc: sh: 16,506; ansic: 16,211; python: 11,213; makefile: 1,919; exp: 190; awk: 58; xml: 22
file content (24 lines) | stat: -rw-r--r-- 901 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
summary: Check snap known

details: |
    The "snap known" command can be used to display assertions that snapd knows
    about. The command supports filtering by attribute value, to limit the
    display to a subset of assertion types or assertions with particular
    properties in general.

execute: |
    tests.exec is-skipped && exit 0

    echo "Listing all account assertions"
    snap known account|MATCH "^type: account$"
    snap known account|MATCH "^account-id: canonical$"

    echo "Finding one account assertion with filters"
    cnt=$(snap known account account-id=canonical|grep -c "^type: account$")
    [ "$cnt" -eq 1 ]
    snap known account|MATCH "^account-id: canonical$"
    snap known account|MATCH "^username: canonical$"

    echo "Searching non existing assertion"
    cnt=$(snap known account account-id=non-existing|grep -c "^type: account$" || true)
    [ "$cnt" -eq 0 ]