1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2017 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package policy_test
import (
. "gopkg.in/check.v1"
"github.com/snapcore/snapd/interfaces"
"github.com/snapcore/snapd/interfaces/ifacetest"
"github.com/snapcore/snapd/interfaces/policy"
"github.com/snapcore/snapd/snap"
"github.com/snapcore/snapd/snap/snaptest"
)
type helpersSuite struct{}
var _ = Suite(&helpersSuite{})
func (s *helpersSuite) TestNestedGet(c *C) {
const consumerYaml = `name: consumer
version: 0
apps:
app:
plugs:
plug:
interface: interface
`
plug, _ := ifacetest.MockConnectedPlugWithAttrs(c, consumerYaml, nil, "plug", nil, map[string]any{
"a": "123",
})
const producerYaml = `name: producer
version: 0
apps:
app:
slots:
slot:
interface: interface
`
slot, slotInfo := ifacetest.MockConnectedSlotWithAttrs(c, producerYaml, nil, "slot", nil, map[string]any{
"a": "123",
})
_, err := policy.NestedGet("slot", slot, "b")
c.Check(err, ErrorMatches, `slot attribute "b" not found`)
_, err = policy.NestedGet("plug", plug, "a.b")
c.Check(err, ErrorMatches, `plug attribute "a\.b" not found`)
v, err := policy.NestedGet("slot", slot, "a")
c.Check(err, IsNil)
c.Check(v, Equals, "123")
slot = interfaces.NewConnectedSlot(slotInfo, slot.AppSet(), nil, map[string]any{
"a": map[string]any{
"b": []any{"1", "2", "3"},
},
})
v, err = policy.NestedGet("slot", slot, "a.b")
c.Check(err, IsNil)
c.Check(v, DeepEquals, []any{"1", "2", "3"})
}
func (s *helpersSuite) TestSnapdTypeCheck(c *C) {
// Type checking the snapd snap is done in a special way.
// It appears to be of type "core" while in reality it is of type "app".
sideInfo := &snap.SideInfo{
SnapID: "PMrrV4ml8uWuEUDBT8dSGnKUYbevVhc4",
}
snapInfo := snaptest.MockInfo(c, `
name: snapd
version: 1
type: app
slots:
network:
`, sideInfo)
err := policy.CheckSnapType(snapInfo, []string{"core"})
c.Assert(err, IsNil)
}
|