This file is indexed.

/usr/share/pyshared/insanity/storage/mysql.py is in python-insanity 0.0+git20110920.4750a8e8-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
# GStreamer QA system
#
#       storage/mysql.py
#
# Copyright (c) 2008, Edward Hervey <bilboed@bilboed.com>
#
# This program 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 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.

"""
MySQL based DBStorage

Requires the mysql-python module
http://mysql-python.sourceforge.net/
"""

from insanity.log import error, warning, debug
from insanity.storage.dbstorage import DBStorage
import MySQLdb

class MySQLStorage(DBStorage):
    """
    MySQL based DBStorage
    """

    _default_host = "localhost"
    _default_user = "insanity"
    _default_pass = "madness"
    _default_port = 3306
    _default_db = "insanity"

    @classmethod
    def parse_uri(cls, uri):
        """
        Parse a given string of format

          mysql://username:password@hostname:port/database

        into a dictionary {"hostname":...} suitable for passing as kwargs to
        MySQLStorage(**kwargs).

        Omitted fields will be filled with default values from

          mysql://insanity:madness@localhost:3306/insanity
        """
        username=cls._default_user
        passwd=cls._default_pass
        port=cls._default_port
        host=cls._default_host
        dbname=cls._default_db

        if uri.startswith("mysql://"):
            uri = uri[8:]

        if '@' in uri:
            userpass, uri = uri.split('@', 1)
            if ':' in userpass:
                username, passwd = userpass.split(':', 1)
            else:
                username = userpass
        if '/' in uri:
            uri, dbname = uri.rsplit('/', 1)
        if ':' in uri:
            host, port = uri.split(':', 1)
            port = int(port)
        else:
            host = uri

        return {"username":username,
                "passwd":passwd,
                "port":port,
                "host":host,
                "dbname":dbname}

    def __init__(self, host=_default_host, username=_default_user,
                 passwd=_default_pass, port=_default_port,
                 dbname=_default_db,
                 *args, **kwargs):
        self.__host = host
        self.__port = port
        self.__username = username
        self.__passwd = passwd
        self.__dbname = dbname
        DBStorage.__init__(self, *args, **kwargs)

    def __repr__(self):
        return "<%s %s@%s:%d>" % (type(self),
                                  self.__dbname,
                                  self.__host,
                                  self.__port)

    def _openDatabase(self):
        con = MySQLdb.connect(host=self.__host,
                              port=self.__port,
                              user=self.__username,
                              passwd=self.__passwd,
                              db=self.__dbname)
        return con

    def _getDatabaseSchemeVersion(self):
        """
        Returns the scheme version of the currently loaded databse

        Returns None if there's no properly configured scheme, else
        returns the version
        """
        tables = self.__getAllTables()
        if not "version" in tables:
            return None
        # check if the version is the same as the current one
        res = self._FetchOne("SELECT version FROM version")
        if res == None:
            return None
        return res[0]

    def __getAllTables(self):
        """
        Returns the name of all the available tables in the currently
        loaded database.
        """
        checktables = """
        SHOW TABLES;
        """
        cursor = self.con.cursor()
        cursor.execute(checktables)
        res = cursor.fetchall()
        if not res:
            return []
        res = list(zip(*res)[0])
        return res

    def _ExecuteCommit(self, instruction, *args, **kwargs):
        """
        Calls .execute(instruction, *args, **kwargs) and .commit()

        Returns the last row id

        Threadsafe
        """
        instruction = instruction.replace('?', '%s')
        return DBStorage._ExecuteCommit(self, instruction, *args, **kwargs)

    def _ExecuteMany(self, instruction, *args, **kwargs):
        instruction = instruction.replace('?', '%s')
        return DBStorage._ExecuteMany(self, instruction, *args, **kwargs)

    def _FetchAll(self, instruction, *args, **kwargs):
        """
        Executes the given SQL query and returns a list
        of tuples of the results

        Threadsafe
        """
        instruction = instruction.replace('?', '%s')
        return DBStorage._FetchAll(self, instruction, *args, **kwargs)

    def _FetchOne(self, instruction, *args, **kwargs):
        """
        Executes the given SQL query and returns a unique
        tuple of result

        Threadsafe
        """
        instruction = instruction.replace('?', '%s')
        return DBStorage._FetchOne(self, instruction, *args, **kwargs)

    def _getDBScheme(self):
        return DB_SCHEME


DB_SCHEME = """
CREATE TABLE version (
   version integer NOT NULL AUTO_INCREMENT PRIMARY KEY,
   modificationtime INTEGER
);

CREATE TABLE testrun (
   id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,
   clientid INTEGER,
   starttime INTEGER,
   stoptime INTEGER
);

CREATE TABLE client (
   id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,
   software TEXT,
   name TEXT,
   user TEXT
);

CREATE TABLE test (
   id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,
   testrunid INTEGER,
   type INTEGER,
   resultpercentage FLOAT,
   parentid INTEGER,
   ismonitor TINYINT(1) DEFAULT 0,
   isscenario TINYINT(1) DEFAULT 0
);

CREATE TABLE testclassinfo (
   id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,
   type TEXT,
   parent VARCHAR(255),
   description TEXT,
   fulldescription TEXT
);

CREATE TABLE testrun_environment_dict (
   id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,
   containerid INTEGER,
   name TEXT,
   intvalue INTEGER,
   txtvalue TEXT
);

CREATE TABLE test_arguments_dict (
   id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,
   containerid INTEGER,
   name INTEGER,
   intvalue INTEGER,
   txtvalue TEXT
);

CREATE TABLE test_checklist_list (
   id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,
   containerid INTEGER,
   name INTEGER,
   intvalue INTEGER
);

CREATE TABLE test_extrainfo_dict (
   id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,
   containerid INTEGER,
   name INTEGER,
   intvalue INTEGER,
   txtvalue TEXT
);

CREATE TABLE test_outputfiles_dict (
   id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,
   containerid INTEGER,
   name INTEGER,
   txtvalue TEXT
);

CREATE TABLE testclassinfo_arguments_dict (
   id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,
   containerid VARCHAR(255),
   name TEXT,
   txtvalue TEXT
);

CREATE TABLE testclassinfo_checklist_dict (
   id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,
   containerid VARCHAR(255),
   name TEXT,
   txtvalue TEXT
);

CREATE TABLE testclassinfo_extrainfo_dict (
   id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,
   containerid VARCHAR(255),
   name TEXT,
   txtvalue TEXT
);

CREATE TABLE testclassinfo_outputfiles_dict (
   id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,
   containerid VARCHAR(255),
   name TEXT,
   txtvalue TEXT
);

CREATE INDEX test_testrunid_idx ON test(testrunid, resultpercentage);
CREATE INDEX testclassinfo_parent_idx ON testclassinfo (parent);
CREATE INDEX testrun_env_dict_container_idx ON testrun_environment_dict (containerid);

CREATE INDEX t_a_dict_containerid_idx ON test_arguments_dict (containerid, name);
CREATE INDEX t_a_dict_txtname_idx ON test_arguments_dict (txtvalue, name);
CREATE INDEX t_c_list_containerid_idx ON test_checklist_list (containerid, name);
CREATE INDEX t_ei_dict_containerid_idx ON test_extrainfo_dict (containerid, name);
CREATE INDEX t_of_dict_containerid_idx ON test_outputfiles_dict (containerid, name);

CREATE INDEX tc_a_dict_c_idx ON testclassinfo_arguments_dict (containerid);
CREATE INDEX tc_c_dict_c_idx ON testclassinfo_checklist_dict (containerid);
CREATE INDEX tc_ei_dict_c_idx ON testclassinfo_extrainfo_dict (containerid);
CREATE INDEX tc_of_dict_c_idx ON testclassinfo_outputfiles_dict (containerid);

CREATE INDEX test_type_idx ON test (type);
"""