File: TestDataFormatterObjCNSContainer.py

package info (click to toggle)
llvm-toolchain-21 1%3A21.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,235,796 kB
  • sloc: cpp: 7,617,614; ansic: 1,433,901; asm: 1,058,726; python: 252,096; f90: 94,671; objc: 70,753; lisp: 42,813; pascal: 18,401; sh: 10,032; ml: 5,111; perl: 4,720; awk: 3,523; makefile: 3,401; javascript: 2,272; xml: 892; fortran: 770
file content (121 lines) | stat: -rw-r--r-- 4,011 bytes parent folder | download | duplicates (4)
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# encoding: utf-8
"""
Test lldb data formatter subsystem.
"""


import lldb
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil

from ObjCDataFormatterTestCase import ObjCDataFormatterTestCase


class ObjCDataFormatterNSContainer(ObjCDataFormatterTestCase):
    def test_nscontainers_with_run_command(self):
        """Test formatters for  NS container classes."""
        self.appkit_tester_impl(self.nscontainers_data_formatter_commands, False)

    def nscontainers_data_formatter_commands(self):
        self.runCmd("settings set target.prefer-dynamic-value no-dynamic-values")

        self.expect(
            "frame variable newArray nsDictionary newDictionary nscfDictionary cfDictionaryRef newMutableDictionary copyDictionary newMutableDictionaryRef cfarray_ref mutable_array_ref",
            substrs=[
                "(NSArray *) newArray = ",
                ' @"50 elements"',
                "(NSDictionary *) nsDictionary = ",
                " 2 key/value pairs",
                "(NSDictionary *) newDictionary = ",
                " 12 key/value pairs",
                "(NSDictionary *) nscfDictionary = ",
                " 4 key/value pairs",
                "(CFDictionaryRef) cfDictionaryRef = ",
                " 2 key/value pairs",
                "(NSDictionary *) newMutableDictionary = ",
                " 21 key/value pairs",
                "(NSMutableDictionary *) copyDictionary = ",
                " 21 key/value pairs",
                "(CFMutableDictionaryRef) newMutableDictionaryRef = ",
                " 21 key/value pairs",
                "(CFArrayRef) cfarray_ref = ",
                ' @"3 elements"',
                "(CFMutableArrayRef) mutable_array_ref = ",
                ' @"11 elements"',
            ],
        )

        self.expect(
            "frame var -d run-target copyDictionary[10]", substrs=['@"bar9"', '@"foo"']
        )

        self.expect(
            "frame variable -d run-target *nscfDictionary",
            ordered=False,
            patterns=[
                r"\(__NSCFDictionary\) \*nscfDictionary =",
                'key = 0x.* @"foo"',
                'value = 0x.* @"foo"',
                'key = 0x.* @"bar"',
                'value = 0x.* @"bar"',
                'key = 0x.* @"baz"',
                'value = 0x.* @"baz"',
                'key = 0x.* @"quux"',
                'value = 0x.* @"quux"',
            ],
        )

        self.expect(
            "frame variable -d run-target *cfDictionaryRef",
            ordered=False,
            patterns=[
                r"\(const __CFDictionary\) \*cfDictionaryRef =",
                'key = 0x.* @"foo"',
                'value = 0x.* @"foo"',
                'key = 0x.* @"bar"',
                'value = 0x.* @"bar"',
            ],
        )

        self.expect(
            "frame var nscfSet cfSetRef",
            substrs=[
                "(NSSet *) nscfSet = ",
                "2 elements",
                "(CFSetRef) cfSetRef = ",
                "2 elements",
            ],
        )

        self.expect(
            "frame variable -d run-target *nscfSet",
            patterns=[
                r"\(__NSCFSet\) \*nscfSet =",
                r'\[0\] = 0x.* @".*"',
                r'\[1\] = 0x.* @".*"',
            ],
        )

        self.expect(
            "frame variable -d run-target *cfSetRef",
            patterns=[
                r"\(const __CFSet\) \*cfSetRef =",
                r'\[0\] = 0x.* @".*"',
                r'\[1\] = 0x.* @".*"',
            ],
        )

        self.expect(
            "frame variable iset1 iset2 imset",
            substrs=["4 indexes", "512 indexes", "10 indexes"],
        )

        self.expect(
            "frame variable binheap_ref",
            substrs=["(CFBinaryHeapRef) binheap_ref = ", '@"21 items"'],
        )

        self.expect(
            "expression -d run -- (NSArray*)[NSArray new]", substrs=['@"0 elements"']
        )