1*43a90889SApple OSS Distributions## 2*43a90889SApple OSS Distributions# Copyright (c) 2023 Apple Inc. All rights reserved. 3*43a90889SApple OSS Distributions# 4*43a90889SApple OSS Distributions# @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5*43a90889SApple OSS Distributions# 6*43a90889SApple OSS Distributions# This file contains Original Code and/or Modifications of Original Code 7*43a90889SApple OSS Distributions# as defined in and that are subject to the Apple Public Source License 8*43a90889SApple OSS Distributions# Version 2.0 (the 'License'). You may not use this file except in 9*43a90889SApple OSS Distributions# compliance with the License. The rights granted to you under the License 10*43a90889SApple OSS Distributions# may not be used to create, or enable the creation or redistribution of, 11*43a90889SApple OSS Distributions# unlawful or unlicensed copies of an Apple operating system, or to 12*43a90889SApple OSS Distributions# circumvent, violate, or enable the circumvention or violation of, any 13*43a90889SApple OSS Distributions# terms of an Apple operating system software license agreement. 14*43a90889SApple OSS Distributions# 15*43a90889SApple OSS Distributions# Please obtain a copy of the License at 16*43a90889SApple OSS Distributions# http://www.opensource.apple.com/apsl/ and read it before using this file. 17*43a90889SApple OSS Distributions# 18*43a90889SApple OSS Distributions# The Original Code and all software distributed under the License are 19*43a90889SApple OSS Distributions# distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20*43a90889SApple OSS Distributions# EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21*43a90889SApple OSS Distributions# INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22*43a90889SApple OSS Distributions# FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23*43a90889SApple OSS Distributions# Please see the License for the specific language governing rights and 24*43a90889SApple OSS Distributions# limitations under the License. 25*43a90889SApple OSS Distributions# 26*43a90889SApple OSS Distributions# @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27*43a90889SApple OSS Distributions## 28*43a90889SApple OSS Distributions 29*43a90889SApple OSS Distributions# pylint: disable=invalid-name 30*43a90889SApple OSS Distributions 31*43a90889SApple OSS Distributions""" Unit test examples 32*43a90889SApple OSS Distributions 33*43a90889SApple OSS Distributions This is not a real test suite. It only demonstrates various approaches developers 34*43a90889SApple OSS Distributions can use to write a test. 35*43a90889SApple OSS Distributions""" 36*43a90889SApple OSS Distributions 37*43a90889SApple OSS Distributionsimport contextlib 38*43a90889SApple OSS Distributionsimport io 39*43a90889SApple OSS Distributionsimport unittest.mock 40*43a90889SApple OSS Distributionsfrom lldbtest.testcase import LLDBTestCase 41*43a90889SApple OSS Distributionsimport lldb 42*43a90889SApple OSS Distributions 43*43a90889SApple OSS Distributionsfrom lldbmock.utils import lookup_type 44*43a90889SApple OSS Distributions 45*43a90889SApple OSS Distributions# Import macro function to be tested. 46*43a90889SApple OSS Distributionsfrom process import ShowTask, P_LHASTASK, TF_HASPROC 47*43a90889SApple OSS Distributions 48*43a90889SApple OSS Distributions 49*43a90889SApple OSS Distributionsclass TestExamples(LLDBTestCase): 50*43a90889SApple OSS Distributions """ Unit test examples. """ 51*43a90889SApple OSS Distributions 52*43a90889SApple OSS Distributions ROUNDED_UP_PROC_SIZE = 2048 53*43a90889SApple OSS Distributions 54*43a90889SApple OSS Distributions # Mock global variable value (accessed by the macro being) 55*43a90889SApple OSS Distributions @unittest.mock.patch('xnu.kern.globals.proc_struct_size', ROUNDED_UP_PROC_SIZE) 56*43a90889SApple OSS Distributions def test_function(self): 57*43a90889SApple OSS Distributions """ This test shows how to run complex function against a mock. """ 58*43a90889SApple OSS Distributions 59*43a90889SApple OSS Distributions self.reset_mocks() 60*43a90889SApple OSS Distributions 61*43a90889SApple OSS Distributions PROC_ADDR = 0xffffffff90909090 62*43a90889SApple OSS Distributions TASK_ADDR = PROC_ADDR + self.ROUNDED_UP_PROC_SIZE 63*43a90889SApple OSS Distributions PROC_RO_ADDR = 0xffffff0040404040 64*43a90889SApple OSS Distributions 65*43a90889SApple OSS Distributions # Create fake proc_t instance at 0xffffffff90909090 66*43a90889SApple OSS Distributions proc = self.create_mock('proc', PROC_ADDR).fromDict({ 67*43a90889SApple OSS Distributions 'p_pid': 12345, 68*43a90889SApple OSS Distributions 'p_lflag': P_LHASTASK, 69*43a90889SApple OSS Distributions 'p_comm': b'test-proc\0' 70*43a90889SApple OSS Distributions }) 71*43a90889SApple OSS Distributions 72*43a90889SApple OSS Distributions # Create task which is expected to be placed + sizeof(proc) 73*43a90889SApple OSS Distributions task = self.create_mock('task', TASK_ADDR).fromDict({ 74*43a90889SApple OSS Distributions 'effective_policy': { 75*43a90889SApple OSS Distributions 'tep_sup_active': 0, 76*43a90889SApple OSS Distributions 'tep_darwinbg': 0, 77*43a90889SApple OSS Distributions 'tep_lowpri_cpu': 1 78*43a90889SApple OSS Distributions }, 79*43a90889SApple OSS Distributions 't_flags': TF_HASPROC 80*43a90889SApple OSS Distributions }) 81*43a90889SApple OSS Distributions 82*43a90889SApple OSS Distributions # Created shared proc_ro reference from both task/proc 83*43a90889SApple OSS Distributions self.create_mock('proc_ro', PROC_RO_ADDR) 84*43a90889SApple OSS Distributions proc.p_proc_ro = PROC_RO_ADDR 85*43a90889SApple OSS Distributions task.bsd_info_ro = PROC_RO_ADDR 86*43a90889SApple OSS Distributions 87*43a90889SApple OSS Distributions # Capture stdout and check expected output 88*43a90889SApple OSS Distributions stdout = io.StringIO() 89*43a90889SApple OSS Distributions with contextlib.redirect_stdout(stdout): 90*43a90889SApple OSS Distributions ShowTask([f'{TASK_ADDR:#x}']) 91*43a90889SApple OSS Distributions 92*43a90889SApple OSS Distributions # Note: Not the best way of writing a unit test. 93*43a90889SApple OSS Distributions expected = ( 94*43a90889SApple OSS Distributions 'task vm_map ipc_space #acts flags' 95*43a90889SApple OSS Distributions ' pid process io_policy wq_state command' 96*43a90889SApple OSS Distributions f' \n{TASK_ADDR:#x} 0x0 0x0 ' 97*43a90889SApple OSS Distributions f' 0 12345 {PROC_ADDR:#x} L 0 0 0' 98*43a90889SApple OSS Distributions ' test-proc \n' 99*43a90889SApple OSS Distributions ) 100*43a90889SApple OSS Distributions self.assertEqual(stdout.getvalue(), expected) 101*43a90889SApple OSS Distributions 102*43a90889SApple OSS Distributions def test_command(self): 103*43a90889SApple OSS Distributions """ Test a simple LLDB command from user's CLI. 104*43a90889SApple OSS Distributions 105*43a90889SApple OSS Distributions Creates mock of a structure and prints out member by using LLDB 106*43a90889SApple OSS Distributions expression. 107*43a90889SApple OSS Distributions """ 108*43a90889SApple OSS Distributions 109*43a90889SApple OSS Distributions self.reset_mocks() 110*43a90889SApple OSS Distributions 111*43a90889SApple OSS Distributions PROC_ADDR = 0xffffffff90909090 112*43a90889SApple OSS Distributions 113*43a90889SApple OSS Distributions self.create_mock('proc', PROC_ADDR).fromDict({ 114*43a90889SApple OSS Distributions 'p_pid': 12345, 115*43a90889SApple OSS Distributions 'p_lflag': P_LHASTASK, 116*43a90889SApple OSS Distributions 'p_comm': b'unit-test-proc\0' 117*43a90889SApple OSS Distributions }) 118*43a90889SApple OSS Distributions 119*43a90889SApple OSS Distributions res = self.run_command(f'p/x ((proc_t){PROC_ADDR:#x})->p_comm') 120*43a90889SApple OSS Distributions self.assertEqual(res.GetOutput(), '(command_t) "unit-test-proc"\n') 121*43a90889SApple OSS Distributions self.assertTrue(res.Succeeded()) 122*43a90889SApple OSS Distributions 123*43a90889SApple OSS Distributions @unittest.skipIf(LLDBTestCase.kernel().startswith('mach.release'), 124*43a90889SApple OSS Distributions "Not available in RELEASE embedded") 125*43a90889SApple OSS Distributions def test_sbapi(self): 126*43a90889SApple OSS Distributions """ Test SBAPI on top of a mocked target. """ 127*43a90889SApple OSS Distributions 128*43a90889SApple OSS Distributions DOFHELP_ADDR = 0xffffffff11220000 129*43a90889SApple OSS Distributions 130*43a90889SApple OSS Distributions # Construct simple data structure mock. 131*43a90889SApple OSS Distributions self.create_mock('struct dof_helper', DOFHELP_ADDR).fromDict({ 132*43a90889SApple OSS Distributions 'dofhp_mod': b'mock-mod', 133*43a90889SApple OSS Distributions 'dofhp_addr': 0x1234, 134*43a90889SApple OSS Distributions 'dofhp_dof': 0x5678 135*43a90889SApple OSS Distributions }) 136*43a90889SApple OSS Distributions 137*43a90889SApple OSS Distributions # Construct SBValue on top of the mock. 138*43a90889SApple OSS Distributions addr = self.target.ResolveLoadAddress(DOFHELP_ADDR) 139*43a90889SApple OSS Distributions sbv = self.target.CreateValueFromAddress('test', 140*43a90889SApple OSS Distributions addr, lookup_type('dof_helper_t')) 141*43a90889SApple OSS Distributions 142*43a90889SApple OSS Distributions self.assertTrue(sbv.IsValid() and sbv.error.success) 143*43a90889SApple OSS Distributions 144*43a90889SApple OSS Distributions # Check that LLDB SBAPI returns correct values from mock. 145*43a90889SApple OSS Distributions err = lldb.SBError() 146*43a90889SApple OSS Distributions self.assertEqual( 147*43a90889SApple OSS Distributions sbv.GetChildMemberWithName('dofhp_mod').GetData().GetString(err, 0), 148*43a90889SApple OSS Distributions "mock-mod" 149*43a90889SApple OSS Distributions ) 150*43a90889SApple OSS Distributions self.assertEqual( 151*43a90889SApple OSS Distributions sbv.GetChildMemberWithName('dofhp_addr').GetValueAsUnsigned(), 152*43a90889SApple OSS Distributions 0x1234 153*43a90889SApple OSS Distributions ) 154*43a90889SApple OSS Distributions self.assertEqual( 155*43a90889SApple OSS Distributions sbv.GetChildMemberWithName('dofhp_dof').GetValueAsUnsigned(), 156*43a90889SApple OSS Distributions 0x5678 157*43a90889SApple OSS Distributions ) 158*43a90889SApple OSS Distributions 159*43a90889SApple OSS Distributions @unittest.skipIf(LLDBTestCase.arch() != 'arm64e', "Only on arm64e") 160*43a90889SApple OSS Distributions def test_skip_arch(self): 161*43a90889SApple OSS Distributions """ Example of architecture specific test. """ 162*43a90889SApple OSS Distributions 163*43a90889SApple OSS Distributions self.assertEqual(self.target.triple.split('-', 1)[0], 'arm64e') 164*43a90889SApple OSS Distributions 165*43a90889SApple OSS Distributions @unittest.skipIf(LLDBTestCase.variant() != 'DEVELOPMENT', "DEVELOPMENT kernel only") 166*43a90889SApple OSS Distributions def test_skip_development(self): 167*43a90889SApple OSS Distributions """ Test that runs only on release kernel. """ 168*43a90889SApple OSS Distributions 169*43a90889SApple OSS Distributions self.assertEqual(LLDBTestCase.variant(), "DEVELOPMENT") 170