VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/tests/selftests/tdSelfTest2.py@ 76553

Last change on this file since 76553 was 76553, checked in by vboxsync, 6 years ago

scm --update-copyright-year

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 4.8 KB
Line 
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3# $Id: tdSelfTest2.py 76553 2019-01-01 01:45:53Z vboxsync $
4
5"""
6Test Manager / Suite Self Test #2 - Everything should succeed.
7"""
8
9__copyright__ = \
10"""
11Copyright (C) 2010-2019 Oracle Corporation
12
13This file is part of VirtualBox Open Source Edition (OSE), as
14available from http://www.virtualbox.org. This file is free software;
15you can redistribute it and/or modify it under the terms of the GNU
16General Public License (GPL) as published by the Free Software
17Foundation, in version 2 as it comes in the "COPYING" file of the
18VirtualBox OSE distribution. VirtualBox OSE is distributed in the
19hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
20
21The contents of this file may alternatively be used under the terms
22of the Common Development and Distribution License Version 1.0
23(CDDL) only, as it comes in the "COPYING.CDDL" file of the
24VirtualBox OSE distribution, in which case the provisions of the
25CDDL are applicable instead of those of the GPL.
26
27You may elect to license modified versions of this file under the
28terms and conditions of either the GPL or the CDDL or both.
29"""
30__version__ = "$Revision: 76553 $"
31
32
33# Standard Python imports.
34import os;
35import sys;
36
37# Only the main script needs to modify the path.
38try: __file__
39except: __file__ = sys.argv[0];
40g_ksValidationKitDir = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))));
41sys.path.append(g_ksValidationKitDir);
42
43# Validation Kit imports.
44from common import utils;
45from testdriver import reporter;
46from testdriver.base import TestDriverBase;
47
48
49class tdSelfTest2(TestDriverBase):
50 """
51 Test Manager / Suite Self Test #2 - Everything should succeed.
52 """
53
54 def __init__(self):
55 TestDriverBase.__init__(self);
56
57
58 def actionExecute(self):
59 reporter.testStart('reporter.testXXXX API');
60 reporter.testValue('value-name1', 123456789, 'ms');
61
62 reporter.testStart('subtest');
63 reporter.testValue('value-name2', 11223344, 'times');
64 reporter.testDone();
65
66 reporter.testStart('subtest2');
67 reporter.testValue('value-name3', 39, 'sec');
68 reporter.testValue('value-name4', 42, 'ns');
69 reporter.testDone();
70
71 reporter.testStart('subtest3');
72 reporter.testDone(fSkipped = True);
73
74 # No spaces in XML.
75 reporter.testStart('subtest4');
76 oSubXmlFile = reporter.FileWrapperTestPipe();
77 oSubXmlFile.write('<?xml version="1.0" encoding="UTF-8" ?>');
78 oSubXmlFile.write('<Test timestamp="%s" name="foobar1">' % (utils.getIsoTimestamp(),));
79 oSubXmlFile.write('<Test timestamp="%s" name="sub1">' % (utils.getIsoTimestamp(),));
80 oSubXmlFile.write('<Passed timestamp="%s"/>' % (utils.getIsoTimestamp(),));
81 oSubXmlFile.write('</Test>');
82 oSubXmlFile.write('<End timestamp="%s" errors="0"/>' % (utils.getIsoTimestamp(),));
83 oSubXmlFile.write('</Test>');
84 oSubXmlFile.close();
85 oSubXmlFile = None;
86 reporter.testDone();
87
88 # Spaces + funny line endings.
89 reporter.testStart('subtest5');
90 oSubXmlFile = reporter.FileWrapperTestPipe();
91 oSubXmlFile.write('<?xml version="1.0" encoding="UTF-8" ?>\r\n');
92 oSubXmlFile.write('<Test timestamp="%s" name="foobar2">\n\n\t\n\r\n' % (utils.getIsoTimestamp(),));
93 oSubXmlFile.write('<Test timestamp="%s" name="sub2">' % (utils.getIsoTimestamp(),));
94 oSubXmlFile.write(' <Passed timestamp="%s"/>\n' % (utils.getIsoTimestamp(),));
95 oSubXmlFile.write(' </Test>\n');
96 oSubXmlFile.write(' <End timestamp="%s" errors="0"/>\r' % (utils.getIsoTimestamp(),));
97 oSubXmlFile.write('</Test>');
98 oSubXmlFile.close();
99 reporter.testDone();
100
101 # A few long log times for WUI log testing.
102 reporter.log('long line: asdfasdfljkasdlfkjasldkfjlaksdfjl asdlfkjasdlkfjalskdfjlaksdjfa falkjaldkjfalskdjflaksdjf ' \
103 'lajksdflkjasdlfkjalsdfj asldfkjlaskdjflaksdjflaksdjflkj asdlfkjalsdkfjalsdkjflaksdj fasdlfkj ' \
104 'asdlkfj aljkasdflkj alkjdsf lakjsdf');
105 reporter.log('long line: asdfasdfljkasdlfkjasldkfjlaksdfjl asdlfkjasdlkfjalskdfjlaksdjfa falkjaldkjfalskdjflaksdjf ' \
106 'lajksdflkjasdlfkjalsdfj asldfkjlaskdjflaksdjflaksdjflkj asdlfkjalsdkfjalsdkjflaksdj fasdlfkj ' \
107 'asdlkfj aljkasdflkj alkjdsf lakjsdf');
108 reporter.log('long line: asdfasdfljkasdlfkjasldkfjlaksdfjl asdlfkjasdlkfjalskdfjlaksdjfa falkjaldkjfalskdjflaksdjf ' \
109 'lajksdflkjasdlfkjalsdfj asldfkjlaskdjflaksdjflaksdjflkj asdlfkjalsdkfjalsdkjflaksdj fasdlfkj ' \
110 'asdlkfj aljkasdflkj alkjdsf lakjsdf');
111
112 # Upload a file.
113 reporter.addLogFile(__file__, sKind = 'log/release/vm');
114
115 reporter.testDone();
116 return True;
117
118
119if __name__ == '__main__':
120 sys.exit(tdSelfTest2().main(sys.argv));
121
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette