# -*- encoding: UTF8 -*- # Test harness for JobsCmdFilter.py from __future__ import print_function import sys import unittest import os sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) from log2sql import Log2sql python3 = sys.version_info[0] >= 3 if python3: from io import StringIO else: from StringIO import StringIO fileHeader = """CREATE DATABASE IF NOT EXISTS testdb; USE testdb; DROP TABLE IF EXISTS process; CREATE TABLE process (processkey CHAR(32) NOT NULL, lineNumber INT NOT NULL, pid INT NOT NULL, startTime DATETIME NOT NULL,endTime DATETIME NULL, computedLapse FLOAT NULL,completedLapse FLOAT NULL, user TEXT NOT NULL, workspace TEXT NOT NULL, ip TEXT NOT NULL, app TEXT NOT NULL, cmd TEXT NOT NULL, args TEXT NULL, uCpu INT NULL, sCpu INT NULL, diskIn INT NULL, diskOut INT NULL, ipcIn INT NULL, ipcOut INT NULL, maxRss INT NULL, pageFaults INT NULL, rpcMsgsIn INT NULL, rpcMsgsOut INT NULL, rpcSizeIn INT NULL, rpcSizeOut INT NULL, rpcHimarkFwd INT NULL, rpcHimarkRev INT NULL, running INT NULL, error TEXT NULL, PRIMARY KEY (processkey, lineNumber)); DROP TABLE IF EXISTS tableUse; CREATE TABLE tableUse (processkey CHAR(32) NOT NULL, lineNumber INT NOT NULL, tableName VARCHAR(255) NOT NULL, pagesIn INT NULL, pagesOut INT NULL, pagesCached INT NULL, readLocks INT NULL, writeLocks INT NULL, getRows INT NULL, posRows INT NULL, scanRows INT NULL, putRows int NULL, delRows INT NULL, totalReadWait INT NULL, totalReadHeld INT NULL, totalWriteWait INT NULL, totalWriteHeld INT NULL, maxReadWait INT NULL, maxReadHeld INT NULL, maxWriteWait INT NULL, maxWriteHeld INT NULL, PRIMARY KEY (processkey, lineNumber, tableName)); BEGIN TRANSACTION; """ class MyOptions(): def __init__(self, dbname, logname, sql=False): self.dbname = dbname self.logname = logname self.sql = sql class TestLogParser(unittest.TestCase): def __init__(self, methodName='runTest'): super(TestLogParser, self).__init__(methodName=methodName) def assertRegex(self, *args, **kwargs): if python3: return super(TestLogParser, self).assertRegex(*args, **kwargs) else: return super(TestLogParser, self).assertRegexpMatches(*args, **kwargs) def setUp(self): pass def tearDown(self): pass def testBasicParsing(self): "simple parsing" input = """ Perforce server info: 2015/09/02 15:23:09 pid 1616 robert@robert-test 127.0.0.1 [Microsoft Visual Studio 2013/12.0.21005.1] 'user-sync //...' Perforce server info: 2015/09/02 15:23:09 pid 1616 compute end .031s Perforce server info: 2015/09/02 15:23:09 pid 1616 completed .031s """ md5 = "51ae6850c357585e594720f7efe9bfc0" if python3: md5 = "51ae6850c357585e594720f7efe9bfc0" expected = """INSERT IGNORE INTO process VALUES ("%s",3,1616,"2015-09-02 15:23:09",NULL,NULL,NULL,"robert","robert-test","127.0.0.1","Microsoft Visual Studio 2013/12.0.21005.1","user-sync","//...",NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL); COMMIT; BEGIN TRANSACTION; """ % md5 saved_stdoutput = StringIO() options = MyOptions("testdb", "") log2sql = Log2sql(options, instream=StringIO(input), outstream=saved_stdoutput) log2sql.processLog() actual = saved_stdoutput.getvalue() self.assertEqual(fileHeader, actual[:len(fileHeader)]) self.assertEqual(expected, actual[len(fileHeader):]) input = """ Perforce server info: 2015/09/02 15:23:11 pid 1616 robert@robert-test 127.0.0.1 [Microsoft Visual Studio 2013/12.0.21005.1] 'user-changes -c robert-test -m 1 -s pending -u robert' Perforce server info: 2015/09/02 15:23:11 pid 1616 compute end .047s Perforce server info: 2015/09/02 15:23:11 pid 1616 completed .047s """ md5 = "df655d67bf61ab0e6e53d67bb0fe3674" if python3: md5 = "df655d67bf61ab0e6e53d67bb0fe3674" expected = """INSERT IGNORE INTO process VALUES ("%s",3,1616,"2015-09-02 15:23:11",NULL,NULL,NULL,"robert","robert-test","127.0.0.1","Microsoft Visual Studio 2013/12.0.21005.1","user-changes","-c robert-test -m 1 -s pending -u robert",NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL); COMMIT; BEGIN TRANSACTION; """ % md5 saved_stdoutput = StringIO() log2sql = Log2sql(options, instream=StringIO(input), outstream=saved_stdoutput) log2sql.processLog() actual = saved_stdoutput.getvalue() self.assertEqual(fileHeader, actual[:len(fileHeader)]) self.assertEqual(expected, actual[len(fileHeader):]) input = r""" Perforce server info: 2016/12/21 08:39:39 pid 14769 perforce@~tmp.1482305462.13038.585a2fb6041cc1.60954329 192.168.18.31 [SWARM/2016.2/1446446] 'user-counter -u swarm-activity-fffec3dd {"type":"change","link":["change",{"change":1005814}],"user":"sahaltran05","action":"committed","target":"change 1005814","preposition":"into","description":"Mac address filtering and fixing the naming collision for the SSH and telnet libraries\n","details":null,"topic":"changes\/1005814","depotFile":null,"time":1482305978,"behalfOf":null,"projects":{"sah-automation":["sah-tests"]},"streams":["user-sahaltran05","personal-sahaltran05","project-sah-automation","group-p4altran","group-sah_app","group-sah_commun_modules","group-sah_components","group-sah_demo","group-sah_hardco","group-sah_nanterre","group-sah_nanterre_opensource","group-sah_opensource","group-sah_stbconfig","group-sah_stbconfig_dev","group-sah_system","group-sah_third_party","group-sah_validation","group-sah_wijgmaal","personal-sah4011"],"change":1005814}' Perforce server info: 2016/12/21 08:39:39 pid 14769 completed .003s 4+0us 0+16io 0+0net 6432k 0pf """ md5 = "fc41244739bdc71e81bcabbfc93124da" if python3: md5 = "fc41244739bdc71e81bcabbfc93124da" expected = """INSERT IGNORE INTO process VALUES ("%s",3,14769,"2016-12-21 08:39:39","2016-12-21 08:39:39",NULL,0.003,"perforce","~tmp.1482305462.13038.585a2fb6041cc1.60954329","192.168.18.31","SWARM/2016.2/1446446","user-counter","-u swarm-activity-fffec3dd {\\"type\\":\\"change\\",\\"link\\":[\\"change\\",{\\"change\\":1005814}],\\"user\\":\\"sahaltran05\\",\\"action\\":\\"committed\\",\\"target\\":\\"change 1005814\\",\\"preposition\\":\\"into\\",\\"description\\":\\"Mac address filtering and fixing the naming collision for the SSH and telnet libraries\\\\n\\",\\"details\\":null,\\"topic\\":\\"changes\\\\/1005814\\",\\"depotFile\\":null,\\"time\\":1482305978,\\"behalfOf\\":null,\\"projects\\":{\\"sah-automation\\":[\\"sah-tests\\"]},\\"streams\\":[\\"user-sahaltran05\\",\\"personal-sahaltran05\\",\\"project-sah-automation\\",\\"group-p4altran\\",\\"group-sah_app\\",\\"group-sah_commun_modules\\",\\"group-sah_components\\",\\"group-sah_demo\\",\\"group-sah_hardco\\",\\"group-sah_nanterre\\",\\"group-sah_nanterre_opensource\\",\\"group-sah_opensource\\",\\"group-sah_stbconfig\\",\\"group-sah_stbconfig_dev\\",\\"group-sah_system\\",\\"group-sah_third_party\\",\\"group-sah_validation\\",\\"group-sah_wijgmaal\\",\\"personal-sah4011\\"],\\"change\\":1005814}",NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL); COMMIT; BEGIN TRANSACTION; """ % md5 saved_stdoutput = StringIO() log2sql = Log2sql(options, instream=StringIO(input), outstream=saved_stdoutput) log2sql.processLog() actual = saved_stdoutput.getvalue() self.assertEqual(fileHeader, actual[:len(fileHeader)]) self.assertEqual(expected, actual[len(fileHeader):]) if __name__ == '__main__': unittest.main()