summaryrefslogtreecommitdiffstats
path: root/src/software/test/test_hosted_software_collection.py
blob: e399b4a2cbc952069f4596b4d37a94ae44fc0167 (plain)
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#!/usr/bin/env python
#
# Copyright (C) 2012-2013 Red Hat, Inc.  All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
#
# Authors: Michal Minar <miminar@redhat.com>
#
"""
Unit tests for LMI_MemberOfSoftwareCollection provider.
"""

import pywbem
import socket
import unittest

import base

class TestHostedSoftwareCollection(base.SoftwareBaseTestCase):
    """
    Basic cim operations test.
    """

    CLASS_NAME = "LMI_HostedSoftwareCollection"
    KEYS = ("Antecedent", "Dependent")

    @classmethod
    def needs_pkgdb(cls):
        return False

    def make_op(self):
        """
        @param ses SoftwareElementState property value
        @return object path of SoftwareIdentity
        """
        objpath = self.objpath.copy()
        objpath["Antecedent"] = pywbem.CIMInstanceName(
                classname="Linux_ComputerSystem",
                namespace="root/cimv2",
                keybindings=pywbem.NocaseDict({
                    "CreationClassName" : "Linux_ComputerSystem",
                    "Name" : socket.getfqdn()
                }))
        objpath["Dependent"] = pywbem.CIMInstanceName(
                classname="LMI_SystemSoftwareCollection",
                namespace="root/cimv2",
                keybindings=pywbem.NocaseDict({
                    "InstanceID" : "LMI:LMI_SystemSoftwareCollection"
                }))
        return objpath

    def test_get_instance(self):
        """
        Tests GetInstance call on packages from our rpm cache.
        """
        objpath = self.make_op()
        inst = self.conn.GetInstance(InstanceName=objpath, LocalOnly=False)
        self.assertIsInstance(inst, pywbem.CIMInstance)
        self.assertEqual(inst.path, objpath)
        self.assertEqual(sorted(inst.properties.keys()), sorted(self.KEYS))
        self.assertEqual(objpath, inst.path)
        for key in self.KEYS:
            self.assertEqual(inst[key], inst.path[key])

        # try with CIM_ prefix
        antecedent = objpath["Antecedent"].copy()
        objpath["Antecedent"].classname = "CIM_ComputerSystem"

        inst = self.conn.GetInstance(InstanceName=objpath, LocalOnly=False)
        self.assertIsInstance(inst, pywbem.CIMInstance)
        objpath["Antecedent"] = antecedent.copy()
        self.assertEqual(objpath, inst.path)
        self.assertEqual(sorted(inst.properties.keys()), sorted(self.KEYS))
        for key in self.KEYS:
            self.assertEqual(inst[key], inst.path[key])

        # try with CIM_ prefix also for CreationClassName
        objpath["Antecedent"]["CreationClassName"] = "CIM_ComputerSystem"

        inst = self.conn.GetInstance(InstanceName=objpath, LocalOnly=False)
        self.assertIsInstance(inst, pywbem.CIMInstance)
        objpath["Antecedent"] = antecedent.copy()
        self.assertEqual(objpath, inst.path)
        self.assertEqual(sorted(inst.properties.keys()), sorted(self.KEYS))
        for key in self.KEYS:
            self.assertEqual(inst[key], inst.path[key])

    def test_enum_instances(self):
        """
        Tests EnumInstances call on installed packages.
        """
        objpath = self.make_op()
        insts = self.conn.EnumerateInstances(ClassName=self.CLASS_NAME)
        self.assertEqual(1, len(insts))
        self.assertEqual(objpath, insts[0].path)
        self.assertEqual(sorted(insts[0].properties.keys()), sorted(self.KEYS))
        self.assertEqual(objpath, insts[0].path)
        for key in self.KEYS:
            self.assertEqual(insts[0][key], insts[0].path[key])

    def test_enum_instance_names(self):
        """
        Tests EnumInstanceNames call on installed packages.
        """
        objpath = self.make_op()
        inames = self.conn.EnumerateInstanceNames(ClassName=self.CLASS_NAME)
        self.assertEqual(1, len(inames))
        self.assertEqual(objpath, inames[0])

    def test_get_antecedent_referents(self):
        """
        Test ReferenceNames for ComputerSystem.
        """
        objpath = self.make_op()
        refs = self.conn.AssociatorNames(
                AssocClass='LMI_HostedSoftwareCollection',
                Role="Antecedent",
                ObjectName=objpath["Antecedent"],
                ResultRole="Dependent",
                ResultClass='LMI_SystemSoftwareCollection')
        self.assertEqual(len(refs), 1)
        ref = refs[0]
        self.assertEqual(objpath["Dependent"], ref)

    @base.mark_dangerous
    def test_get_dependent_referents(self):
        """
        Test ReferenceNames for SystemSoftwareCollection.
        """
        objpath = self.make_op()
        refs = self.conn.AssociatorNames(
                AssocClass='LMI_HostedSoftwareCollection',
                ObjectName=objpath["Dependent"],
                Role="Dependent",
                ResultRole="Antecedent",
                ResultClass="Linux_ComputerSystem")
        self.assertEqual(1, len(refs))
        ref = refs[0]
        self.assertEqual(objpath["Antecedent"], ref)

def suite():
    """For unittest loaders."""
    return unittest.TestLoader().loadTestsFromTestCase(
            TestHostedSoftwareCollection)

if __name__ == '__main__':
    unittest.main()