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
|
"""
Test that LLDB correctly allows scripted commands to set an immediate output file
"""
from __future__ import print_function
import os
import time
import lldb
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test.lldbpexpect import *
from lldbsuite.test import lldbutil
class CommandScriptImmediateOutputTestCase (PExpectTest):
mydir = TestBase.compute_mydir(__file__)
NO_DEBUG_INFO_TESTCASE = True
def setUp(self):
# Call super's setUp().
PExpectTest.setUp(self)
@skipIfRemote # test not remote-ready llvm.org/pr24813
@expectedFailureAll(
oslist=["windows"],
bugnumber="llvm.org/pr22274: need a pexpect replacement for windows")
@expectedFailureAll(oslist=["freebsd"], bugnumber="llvm.org/pr26139")
def test_command_script_immediate_output_console(self):
"""Test that LLDB correctly allows scripted commands to set immediate output to the console."""
self.launch(timeout=10)
script = os.path.join(os.getcwd(), 'custom_command.py')
prompt = "\(lldb\) "
self.sendline('command script import %s' % script, patterns=[prompt])
self.sendline(
'command script add -f custom_command.command_function mycommand',
patterns=[prompt])
self.sendline(
'mycommand',
patterns='this is a test string, just a test string')
self.sendline('command script delete mycommand', patterns=[prompt])
self.quit(gracefully=False)
@skipIfRemote # test not remote-ready llvm.org/pr24813
@expectedFailureAll(
oslist=["windows"],
bugnumber="llvm.org/pr22274: need a pexpect replacement for windows")
@expectedFailureAll(oslist=["freebsd"], bugnumber="llvm.org/pr26139")
def test_command_script_immediate_output_file(self):
"""Test that LLDB correctly allows scripted commands to set immediate output to a file."""
self.launch(timeout=10)
test_files = {os.path.join(os.getcwd(), 'read.txt'): 'r',
os.path.join(os.getcwd(), 'write.txt'): 'w',
os.path.join(os.getcwd(), 'append.txt'): 'a',
os.path.join(os.getcwd(), 'write_plus.txt'): 'w+',
os.path.join(os.getcwd(), 'read_plus.txt'): 'r+',
os.path.join(os.getcwd(), 'append_plus.txt'): 'a+'}
starter_string = 'Starter Garbage\n'
write_string = 'writing to file with mode: '
for path, mode in test_files.iteritems():
with open(path, 'w+') as init:
init.write(starter_string)
script = os.path.join(os.getcwd(), 'custom_command.py')
prompt = "\(lldb\) "
self.sendline('command script import %s' % script, patterns=[prompt])
self.sendline(
'command script add -f custom_command.write_file mywrite',
patterns=[prompt])
for path, mode in test_files.iteritems():
command = 'mywrite "' + path + '" ' + mode
self.sendline(command, patterns=[prompt])
self.sendline('command script delete mywrite', patterns=[prompt])
self.quit(gracefully=False)
for path, mode in test_files.iteritems():
with open(path, 'r') as result:
if mode in ['r', 'a', 'a+']:
self.assertEquals(result.readline(), starter_string)
if mode in ['w', 'w+', 'r+', 'a', 'a+']:
self.assertEquals(
result.readline(), write_string + mode + '\n')
self.assertTrue(os.path.isfile(path))
os.remove(path)
|