1"""Test passing structs to Objective-C methods.""" 2 3 4 5import lldb 6from lldbsuite.test.decorators import * 7from lldbsuite.test.lldbtest import * 8from lldbsuite.test import lldbutil 9 10 11class TestObjCStructArgument(TestBase): 12 13 mydir = TestBase.compute_mydir(__file__) 14 15 def setUp(self): 16 # Call super's setUp(). 17 TestBase.setUp(self) 18 # Find the line numbers to break inside main(). 19 self.main_source = "test.m" 20 self.break_line = line_number( 21 self.main_source, '// Set breakpoint here.') 22 23 @add_test_categories(['pyapi']) 24 @skipIf(debug_info=no_match(["gmodules"]), oslist=['ios', 'watchos', 'tvos', 'bridgeos'], archs=['armv7', 'arm64']) # this test program only builds for ios with -gmodules 25 def test_with_python_api(self): 26 """Test passing structs to Objective-C methods.""" 27 self.build() 28 exe = self.getBuildArtifact("a.out") 29 30 target = self.dbg.CreateTarget(exe) 31 self.assertTrue(target, VALID_TARGET) 32 33 bpt = target.BreakpointCreateByLocation( 34 self.main_source, self.break_line) 35 self.assertTrue(bpt, VALID_BREAKPOINT) 36 37 # Now launch the process, and do not stop at entry point. 38 process = target.LaunchSimple( 39 None, None, self.get_process_working_directory()) 40 41 self.assertTrue(process, PROCESS_IS_VALID) 42 43 # The stop reason of the thread should be breakpoint. 44 thread_list = lldbutil.get_threads_stopped_at_breakpoint(process, bpt) 45 46 # Make sure we stopped at the first breakpoint. 47 self.assertTrue( 48 len(thread_list) != 0, 49 "No thread stopped at our breakpoint.") 50 self.assertEquals(len(thread_list), 1, 51 "More than one thread stopped at our breakpoint.") 52 53 frame = thread_list[0].GetFrameAtIndex(0) 54 self.assertTrue(frame, "Got a valid frame 0 frame.") 55 56 self.expect("p [summer sumThings:tts]", substrs=['9']) 57 58 self.expect( 59 "po [NSValue valueWithRect:rect]", 60 substrs=['NSRect: {{0, 0}, {10, 20}}']) 61 62 # Now make sure we can call a method that returns a struct without 63 # crashing. 64 cmd_value = frame.EvaluateExpression("[provider getRange]") 65 self.assertTrue(cmd_value.IsValid()) 66