-
Notifications
You must be signed in to change notification settings - Fork 187
/
Copy pathcdxml-enhanced-stereochemistry.spec.ts
190 lines (166 loc) · 6.21 KB
/
cdxml-enhanced-stereochemistry.spec.ts
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
184
185
186
187
188
189
190
import { Page, expect, test } from '@playwright/test';
import {
takeEditorScreenshot,
openFileAndAddToCanvas,
LeftPanelButton,
pressButton,
selectLeftPanelButton,
receiveFileComparisonData,
saveToFile,
clickOnAtom,
waitForPageInit,
} from '@utils';
import { getCdxml } from '@utils/formats';
async function selectRadioButtonForNewGroup(
page: Page,
selectRadioButton: string,
cancelChanges = false,
) {
await selectLeftPanelButton(LeftPanelButton.Stereochemistry, page);
await page.getByLabel(selectRadioButton).check();
await pressButton(page, cancelChanges ? 'Cancel' : 'Apply');
}
test.describe('CDXML Enhanced Stereochemistry', () => {
test.beforeEach(async ({ page }) => {
await waitForPageInit(page);
});
test.afterEach(async ({ page }) => {
await takeEditorScreenshot(page);
});
test('Adding AND stereo marks to structure', async ({ page }) => {
/*
Test case: EPMLSOPKET-4724
Description: The structure is opened correctly
New 'And Group' label added to structure.
*/
await openFileAndAddToCanvas('Molfiles-V2000/stereo-test.mol', page);
await selectRadioButtonForNewGroup(page, 'Create new AND Group');
});
test('Adding OR stereo marks to structure', async ({ page }) => {
/*
Test case: EPMLSOPKET-4728
Description: The structure is opened correctly
New 'OR Group' label added to structure.
*/
await openFileAndAddToCanvas('Molfiles-V2000/stereo-test.mol', page);
await selectRadioButtonForNewGroup(page, 'Create new OR Group');
});
test('Adding Mixed AND stereo marks to structure', async ({ page }) => {
/*
Test case: EPMLSOPKET-4725
Description: The structure is opened correctly
'Mixed AND' label added to structure.
*/
const anyAtom = 2;
await openFileAndAddToCanvas('Molfiles-V2000/stereo-test.mol', page);
await clickOnAtom(page, 'C', anyAtom);
await selectRadioButtonForNewGroup(page, 'Create new AND Group');
});
test('Adding Mixed OR stereo marks to structure', async ({ page }) => {
/*
Test case: EPMLSOPKET-4726
Description: The structure is opened correctly
'Mixed OR' label added to structure.
*/
const anyAtom = 2;
await openFileAndAddToCanvas('Molfiles-V2000/stereo-test.mol', page);
await clickOnAtom(page, 'C', anyAtom);
await selectRadioButtonForNewGroup(page, 'Create new OR Group');
});
});
test.describe('CDXML Enhanced Stereochemistry', () => {
test.beforeEach(async ({ page }) => {
await waitForPageInit(page);
});
test('AND stereo marks - Save as *.cdxml file', async ({ page }) => {
/*
Test case: EPMLSOPKET-4724
Description: The structure is saved/opened correctly as *.cdxml file.
All enhanced stereochemistry features are present after opening.
*/
await openFileAndAddToCanvas('CDXML/stereo-and-structure.cdxml', page);
const expectedFile = await getCdxml(page);
await saveToFile('CDXML/stereo-and-structure-expected.cdxml', expectedFile);
const { fileExpected: cdxmlFileExpected, file: cdxmlFile } =
await receiveFileComparisonData({
page,
expectedFileName:
'tests/test-data/CDXML/stereo-and-structure-expected.cdxml',
});
expect(cdxmlFile).toEqual(cdxmlFileExpected);
});
test('OR stereo marks - Save as *.cdxml file', async ({ page }) => {
/*
Test case: EPMLSOPKET-4728
Description: The structure is saved/opened correctly as *.cdxml file.
All enhanced stereochemistry features are present after opening.
*/
await openFileAndAddToCanvas('CDXML/stereo-or-structure.cdxml', page);
const expectedFile = await getCdxml(page);
await saveToFile('CDXML/stereo-or-structure-expected.cdxml', expectedFile);
const { fileExpected: cdxmlFileExpected, file: cdxmlFile } =
await receiveFileComparisonData({
page,
expectedFileName:
'tests/test-data/CDXML/stereo-or-structure-expected.cdxml',
});
expect(cdxmlFile).toEqual(cdxmlFileExpected);
});
test('Mixed AND stereo marks - Save as *.cdxml file', async ({ page }) => {
/*
Test case: EPMLSOPKET-4725
Description: The structure is saved/opened correctly as *.cdxml file.
All enhanced stereochemistry features are present after opening.
*/
await openFileAndAddToCanvas('CDXML/mixed-and-stereo-marks.cdxml', page);
const expectedFile = await getCdxml(page);
await saveToFile(
'CDXML/mixed-and-stereo-marks-expected.cdxml',
expectedFile,
);
const { fileExpected: cdxmlFileExpected, file: cdxmlFile } =
await receiveFileComparisonData({
page,
expectedFileName:
'tests/test-data/CDXML/mixed-and-stereo-marks-expected.cdxml',
});
expect(cdxmlFile).toEqual(cdxmlFileExpected);
});
test('Mixed OR stereo marks - Save as *.cdxml file', async ({ page }) => {
/*
Test case: EPMLSOPKET-4726
Description: The structure is saved/opened correctly as *.cdxml file.
All enhanced stereochemistry features are present after opening.
*/
await openFileAndAddToCanvas('CDXML/mixed-or-stereo-marks.cdxml', page);
const expectedFile = await getCdxml(page);
await saveToFile(
'CDXML/mixed-or-stereo-marks-expected.cdxml',
expectedFile,
);
const { fileExpected: cdxmlFileExpected, file: cdxmlFile } =
await receiveFileComparisonData({
page,
expectedFileName:
'tests/test-data/CDXML/mixed-or-stereo-marks-expected.cdxml',
});
expect(cdxmlFile).toEqual(cdxmlFileExpected);
});
test('Mixed stereo marks - Save as *.cdxml file', async ({ page }) => {
/*
Test case: EPMLSOPKET-4727
Description: The structure is saved/opened correctly as *.cdxml file.
All enhanced stereochemistry features are present after opening.
*/
await openFileAndAddToCanvas('CDXML/mixed-stereo-marks.cdxml', page);
const expectedFile = await getCdxml(page);
await saveToFile('CDXML/mixed-stereo-marks-expected.cdxml', expectedFile);
const { fileExpected: cdxmlFileExpected, file: cdxmlFile } =
await receiveFileComparisonData({
page,
expectedFileName:
'tests/test-data/CDXML/mixed-stereo-marks-expected.cdxml',
});
expect(cdxmlFile).toEqual(cdxmlFileExpected);
});
});