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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
| import { ImageView, Labels, LabelStudio, Sidebar } from "@humansignal/frontend-test/helpers/LSF";
|
| const config = `
| <View>
| <Image name="img" value="$image"></Image>
| <RectangleLabels name="tag" toName="img">
| <Label value="Planet"></Label>
| <Label value="Moonwalker" background="blue"></Label>
| <Label value="Moonwalker 1" background="red"></Label>
| <Label value="Moonwalker 2" background="pink"></Label>
| <Label value="Moonwalker 3" background="yellow"></Label>
| </RectangleLabels>
| </View>
| `;
|
| const configWithMultipleRegions = `
| <View>
| <Image name="img" value="$image"></Image>
| <RectangleLabels name="tag" toName="img">
| <Label value="Moonwalker 2" background="pink"></Label>
| <Label value="Moonwalker 3" background="yellow"></Label>
| </RectangleLabels>
| <RectangleLabels name="tag2" toName="img" allowEmpty="true" maxUsages="2" choice="multiple">
| <Label value="Planet"></Label>
| <Label value="Moonwalker" background="blue"></Label>
| </RectangleLabels>
| </View>
| `;
|
| const image =
| "https://htx-pub.s3.us-east-1.amazonaws.com/examples/images/nick-owuor-astro-nic-visuals-wDifg5xc9Z4-unsplash.jpg";
|
| const task = {
| id: 1,
| annotations: [
| {
| id: 1001,
| result: [
| {
| id: "Dx_aB91ISN",
| source: "$image",
| from_name: "tag",
| to_name: "img",
| type: "rectanglelabels",
| origin: "manual",
| value: {
| height: 10.458911419423693,
| rotation: 0,
| width: 12.4,
| x: 50.8,
| y: 5.869797225186766,
| rectanglelabels: ["Moonwalker"],
| },
| },
| {
| id: "Dx_aB91INs",
| source: "$image",
| from_name: "tag",
| to_name: "img",
| type: "rectanglelabels",
| origin: "manual",
| value: {
| height: 10.458911419423693,
| rotation: 0,
| width: 12.4,
| x: 150.8,
| y: 15.866,
| rectanglelabels: ["Moonwalker 2"],
| },
| },
| {
| id: "Dx_aB91ANs",
| source: "$image",
| from_name: "tag",
| to_name: "img",
| type: "rectanglelabels",
| origin: "manual",
| value: {
| height: 10.458911419423693,
| rotation: 0,
| width: 12.4,
| x: 150.8,
| y: 45.866,
| rectanglelabels: ["Moonwalker 3"],
| },
| },
| {
| id: "Dx_aB19ISN",
| source: "$image",
| from_name: "tag",
| to_name: "img",
| type: "rectanglelabels",
| origin: "manual",
| value: {
| height: 10.458911419423693,
| rotation: 0,
| width: 12.4,
| x: 250.8,
| y: 15.866,
| rectanglelabels: ["Planet"],
| },
| },
| ],
| },
| ],
| predictions: [],
| data: { image },
| };
|
| describe("Image Regions scenario", () => {
| it("should check that regions is hidden", () => {
| LabelStudio.init({
| config,
| task,
| });
|
| ImageView.waitForImage();
| Sidebar.hasRegions(4);
|
| const regions = Sidebar.regions;
| let hiddenRegions = 0;
|
| regions.each(($el, index) => {
| if (index % 2) cy.get($el[0]).click({ multiple: true, ctrlKey: true });
| });
|
| cy.get("body").focus().trigger("keydown", { altKey: true, keyCode: 72 });
|
| regions
| .each(($el) => {
| if ($el.parent().hasClass("lsf-tree__node_hidden")) {
| hiddenRegions++;
| }
| })
| .then(() => {
| expect(hiddenRegions).to.be.eq(2);
| });
| });
|
| it("should be able to select multi label for a region", () => {
| LabelStudio.params().config(configWithMultipleRegions).data({ image }).withResult([]).init();
|
| ImageView.waitForImage();
| Labels.select("Moonwalker 2");
| ImageView.drawRect(20, 20, 100, 100);
| ImageView.clickAt(30, 30);
| Labels.select("Planet");
| Sidebar.hasRegions(1);
| cy.contains("Moonwalker 2, Planet").should("exist");
| cy.get(".lsf-outliner-item").contains("Moonwalker 2").should("have.css", "color", "rgb(255, 192, 203)");
| cy.get(".lsf-outliner-item").contains("Planet").should("have.css", "color", "rgb(114, 191, 178)");
| Labels.select("Planet");
| cy.contains("Moonwalker 2, No label").should("exist");
| cy.get(".lsf-outliner-item").contains("No label").should("have.css", "color", "rgb(102, 102, 102)");
| });
| });
|
|