|
2 | 2 | from unittest import mock
|
3 | 3 |
|
4 | 4 | from objection.commands.memory import _is_string_input, dump_all, dump_from_base, list_modules, list_exports, \
|
5 |
| - find_pattern |
| 5 | + find_pattern, replace_pattern |
6 | 6 | from ..helpers import capture
|
7 | 7 |
|
8 | 8 |
|
@@ -207,6 +207,55 @@ def test_find_pattern_without_string_argument_with_offets_only(self, mock_api):
|
207 | 207 | expected_output = """Searching for: 41 41 41
|
208 | 208 | Pattern matched at 1 addresses
|
209 | 209 | 0x08000000
|
| 210 | +""" |
| 211 | + |
| 212 | + self.assertEqual(output, expected_output) |
| 213 | + |
| 214 | + |
| 215 | + def test_replace_pattern_validates_arguments(self): |
| 216 | + with capture(replace_pattern, []) as o: |
| 217 | + output = o |
| 218 | + |
| 219 | + self.assertEqual(output, 'Usage: memory replace "<search pattern eg: 41 41 ?? 41>" "<replace value eg: 41 50>" (--string-pattern) (--string-replace)\n') |
| 220 | + |
| 221 | + @mock.patch('objection.state.connection.state_connection.get_api') |
| 222 | + def test_replace_pattern_without_string_argument(self, mock_api): |
| 223 | + mock_api.return_value.memory_replace.return_value = ['0x08000000'] |
| 224 | + |
| 225 | + with capture(replace_pattern, ['41 41 41','41 42']) as o: |
| 226 | + output = o |
| 227 | + |
| 228 | + expected_output = """Searching for: 41 41 41, replacing with: 41 42 |
| 229 | +Pattern replaced at 1 addresses |
| 230 | +0x08000000 |
| 231 | +""" |
| 232 | + |
| 233 | + self.assertEqual(output, expected_output) |
| 234 | + |
| 235 | + @mock.patch('objection.state.connection.state_connection.get_api') |
| 236 | + def test_replace_pattern_with_string_argument(self, mock_api): |
| 237 | + mock_api.return_value.memory_replace.return_value = ['0x08000000'] |
| 238 | + |
| 239 | + with capture(replace_pattern, ['foo-bar-baz', '41 41', '--string-pattern']) as o: |
| 240 | + output = o |
| 241 | + |
| 242 | + expected_output = """Searching for: 66 6f 6f 2d 62 61 72 2d 62 61 7a, replacing with: 41 41 |
| 243 | +Pattern replaced at 1 addresses |
| 244 | +0x08000000 |
| 245 | +""" |
| 246 | + |
| 247 | + self.assertEqual(output, expected_output) |
| 248 | + |
| 249 | + @mock.patch('objection.state.connection.state_connection.get_api') |
| 250 | + def test_replace_pattern_without_string_argument_with_offets_only(self, mock_api): |
| 251 | + mock_api.return_value.memory_replace.return_value = ['0x08000000'] |
| 252 | + |
| 253 | + with capture(replace_pattern, ['41 41 41', 'ABC', '--string-replace']) as o: |
| 254 | + output = o |
| 255 | + |
| 256 | + expected_output = """Searching for: 41 41 41, replacing with: ABC |
| 257 | +Pattern replaced at 1 addresses |
| 258 | +0x08000000 |
210 | 259 | """
|
211 | 260 |
|
212 | 261 | self.assertEqual(output, expected_output)
|
0 commit comments