github.com/bugraaydogar/snapd@v0.0.0-20210315170335-8c70bb858939/interfaces/builtin/libvirt_test.go (about) 1 // -*- Mode: Go; indent-tabs-mode: t -*- 2 3 /* 4 * Copyright (C) 2016 Canonical Ltd 5 * 6 * This program is free software: you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 3 as 8 * published by the Free Software Foundation. 9 * 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 * 18 */ 19 20 package builtin_test 21 22 import ( 23 . "gopkg.in/check.v1" 24 25 "github.com/snapcore/snapd/interfaces" 26 "github.com/snapcore/snapd/interfaces/builtin" 27 "github.com/snapcore/snapd/snap" 28 "github.com/snapcore/snapd/testutil" 29 ) 30 31 type LibvirtInterfaceSuite struct { 32 iface interfaces.Interface 33 slotInfo *snap.SlotInfo 34 plugInfo *snap.PlugInfo 35 } 36 37 var _ = Suite(&LibvirtInterfaceSuite{ 38 iface: builtin.MustInterface("libvirt"), 39 slotInfo: &snap.SlotInfo{ 40 Snap: &snap.Info{SuggestedName: "libvirt"}, 41 Name: "libvirt", 42 Interface: "libvirt", 43 }, 44 plugInfo: &snap.PlugInfo{ 45 Snap: &snap.Info{SuggestedName: "other"}, 46 Name: "libvirt", 47 Interface: "libvirt", 48 }, 49 }) 50 51 func (s *LibvirtInterfaceSuite) TestName(c *C) { 52 c.Assert(s.iface.Name(), Equals, "libvirt") 53 } 54 55 func (s *LibvirtInterfaceSuite) TestSanitizePlug(c *C) { 56 c.Assert(interfaces.BeforePreparePlug(s.iface, s.plugInfo), IsNil) 57 } 58 59 func (s *LibvirtInterfaceSuite) TestInterfaces(c *C) { 60 c.Check(builtin.Interfaces(), testutil.DeepContains, s.iface) 61 }