Web Dev Solutions

Catalin Mititiuc

aboutsummaryrefslogtreecommitdiff
blob: 2594179da0d09eafcdab3d901e20c71b524804f3 (plain)
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
const { Builder, By, until } = require('selenium-webdriver'),
  chrome = require('selenium-webdriver/chrome.js'),
  chromeOptions = new chrome.Options(),
  { expect, it } = require('@jest/globals'),
  { readFile } = require('node:fs/promises'),
  { HttpResponse } = require('selenium-webdriver/devtools/networkinterceptor');

chromeOptions.addArguments('--headless', '--disable-gpu', '--no-sandbox');
chromeOptions.enableBidi();

let driver;

beforeEach(async () => {
  driver = new Builder().forBrowser('chrome').setChromeOptions(chromeOptions).build();
});

it('selects and deselects a trooper by clicking on its counter', async () => {
  const connection = await driver.createCDPConnection('page')
  const url = 'http://localhost:3005/assets/images/scenario-side_show.svg';
  const httpResponse = new HttpResponse(url);
  httpResponse.body = await readFile('./test/integration/fixtures/scenario-test.svg', 'utf8');
  httpResponse.addHeaders('Content-Type', 'image/svg+xml');

  await driver.onIntercept(connection, httpResponse, async () => {});
  await driver.get('http://localhost:3005');
  await driver.wait(until.elementLocated(By.css('#dice')), 1000);

  const record = await driver.findElement(By.css('.soldier-record'));
  const notSelected = expect.not.stringContaining('selected');

  expect(await record.getAttribute('class')).toEqual(notSelected);

  const objectEl = await driver.findElement(By.css('object'));
  await driver.switchTo().frame(objectEl);

  const selector = '.counter[data-allegiance="attacker"][data-number="1"]',
    svg = await driver.findElement(By.css('svg')),
    counter = await driver.findElement(By.css(selector), svg),
    selected = expect.stringContaining('selected');

  expect(await counter.getAttribute('class')).toEqual(notSelected);
  await counter.click();

  expect(await counter.getAttribute('class')).toEqual(selected);
  await driver.switchTo().defaultContent();
  expect(await record.getAttribute('class')).toEqual(selected);

  await driver.switchTo().frame(objectEl);
  await counter.click();

  expect(await counter.getAttribute('class')).toEqual(notSelected);
  await driver.switchTo().defaultContent();
  expect(await record.getAttribute('class')).toEqual(notSelected);
});

it('selects and deselects trooper by clicking on its record', async () => {
  const connection = await driver.createCDPConnection('page')
  const url = 'http://localhost:3005/assets/images/scenario-side_show.svg';
  const httpResponse = new HttpResponse(url);
  httpResponse.body = await readFile('./test/integration/fixtures/scenario-test.svg', 'utf8');
  httpResponse.addHeaders('Content-Type', 'image/svg+xml');

  await driver.onIntercept(connection, httpResponse, async () => {});
  await driver.get('http://localhost:3005');
  await driver.wait(until.elementLocated(By.css('#dice')), 1000);

  const record = await driver.findElement(By.css('.soldier-record'));
  const notSelected = expect.not.stringContaining('selected');

  expect(await record.getAttribute('class')).toEqual(notSelected);

  const objectEl = await driver.findElement(By.css('object'));
  await driver.switchTo().frame(objectEl);

  const selector = '.counter[data-allegiance="attacker"][data-number="1"]',
    svg = await driver.findElement(By.css('svg')),
    counter = await driver.findElement(By.css(selector), svg);

  expect(await counter.getAttribute('class')).toEqual(notSelected);

  await driver.switchTo().defaultContent();
  await record.click();

  const selected = expect.stringContaining('selected');

  expect(await record.getAttribute('class')).toEqual(selected);

  await driver.switchTo().frame(objectEl);
  expect(await counter.getAttribute('class')).toEqual(selected);

  await driver.switchTo().defaultContent();
  await record.click();

  expect(await record.getAttribute('class')).toEqual(notSelected);

  await driver.switchTo().frame(objectEl);
  expect(await counter.getAttribute('class')).toEqual(notSelected);
});

it('selects a trooper by clicking on its counter and deselects it by clicking on its record', async () => {
  const connection = await driver.createCDPConnection('page')
  const url = 'http://localhost:3005/assets/images/scenario-side_show.svg';
  const httpResponse = new HttpResponse(url);
  httpResponse.body = await readFile('./test/integration/fixtures/scenario-test.svg', 'utf8');
  httpResponse.addHeaders('Content-Type', 'image/svg+xml');

  await driver.onIntercept(connection, httpResponse, async () => {});
  await driver.get('http://localhost:3005');
  await driver.wait(until.elementLocated(By.css('#dice')), 1000);

  const record = await driver.findElement(By.css('.soldier-record'));
  const notSelected = expect.not.stringContaining('selected');

  expect(await record.getAttribute('class')).toEqual(notSelected);

  const objectEl = await driver.findElement(By.css('object'));
  await driver.switchTo().frame(objectEl);

  const selector = '.counter[data-allegiance="attacker"][data-number="1"]',
    svg = await driver.findElement(By.css('svg')),
    counter = await driver.findElement(By.css(selector), svg),
    selected = expect.stringContaining('selected');

  expect(await counter.getAttribute('class')).toEqual(notSelected);
  await counter.click();

  expect(await counter.getAttribute('class')).toEqual(selected);
  await driver.switchTo().defaultContent();
  expect(await record.getAttribute('class')).toEqual(selected);

  await record.click();

  expect(await record.getAttribute('class')).toEqual(notSelected);

  await driver.switchTo().frame(objectEl);
  expect(await counter.getAttribute('class')).toEqual(notSelected);
});

it('selects a trooper by clicking on its record and deselects it by clicking on its counter', async () => {
  const connection = await driver.createCDPConnection('page')
  const url = 'http://localhost:3005/assets/images/scenario-side_show.svg';
  const httpResponse = new HttpResponse(url);
  httpResponse.body = await readFile('./test/integration/fixtures/scenario-test.svg', 'utf8');
  httpResponse.addHeaders('Content-Type', 'image/svg+xml');

  await driver.onIntercept(connection, httpResponse, async () => {});
  await driver.get('http://localhost:3005');
  await driver.wait(until.elementLocated(By.css('#dice')), 1000);

  const record = await driver.findElement(By.css('.soldier-record'));
  const notSelected = expect.not.stringContaining('selected');

  expect(await record.getAttribute('class')).toEqual(notSelected);

  const objectEl = await driver.findElement(By.css('object'));
  await driver.switchTo().frame(objectEl);

  const selector = '.counter[data-allegiance="attacker"][data-number="1"]',
    svg = await driver.findElement(By.css('svg')),
    counter = await driver.findElement(By.css(selector), svg);

  expect(await counter.getAttribute('class')).toEqual(notSelected);

  await driver.switchTo().defaultContent();
  await record.click();

  const selected = expect.stringContaining('selected');

  expect(await record.getAttribute('class')).toEqual(selected);

  await driver.switchTo().frame(objectEl);
  expect(await counter.getAttribute('class')).toEqual(selected);

  await counter.click();

  expect(await counter.getAttribute('class')).toEqual(notSelected);
  await driver.switchTo().defaultContent();
  expect(await record.getAttribute('class')).toEqual(notSelected);
});

afterEach(async () => {
  await driver.quit();
});