@luigi-project/testing-utilities 2.13.1-dev.20240690029 → 2.13.1-dev.20240710031
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +217 -15
- package/luigi-mock-util.d.ts +1 -1
- package/luigi-mock-util.js +65 -35
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
# Luigi Testing Utilities
|
|
2
2
|
|
|
3
|
-
The Luigi Testing Utilities are a set of auxiliary functions used to enhance the user experience while testing Luigi-based micro frontends. The functions abstract away Luigi-specific logic from the tester so that it is easier for them to mock and assert Luigi functionality.
|
|
3
|
+
The [Luigi Testing Utilities](https://github.com/SAP/luigi/tree/main/client-frameworks-support/testing-utilities) are a set of auxiliary functions used to enhance the user experience while testing Luigi-based micro frontends. The functions abstract away Luigi-specific logic from the tester so that it is easier for them to mock and assert Luigi functionality.
|
|
4
4
|
|
|
5
|
-
## LuigiMockUtil
|
|
6
|
-
This class contains certain utility helper functions needed when writing
|
|
5
|
+
## LuigiMockUtil
|
|
6
|
+
This class contains certain utility helper functions needed when writing e2e tests with different test frameworks. You can simply import this module into you project and then use an instance of it to test micro frontend functionality.
|
|
7
|
+
Before version 2.9.0 this class could only be used for [protractor-based](https://www.npmjs.com/package/protractor) e2e tests.
|
|
8
|
+
Since version 2.9.0 this class supports both Cypress and Protractor.
|
|
9
|
+
Since version 2.14.0 this class supports also Nightwatch, WebdriverIO and Puppeteer.
|
|
7
10
|
|
|
8
|
-
|
|
11
|
+
## How to use the library
|
|
9
12
|
|
|
10
|
-
|
|
11
|
-
|
|
13
|
+
**Prerequisites:**
|
|
14
|
+
|
|
15
|
+
_In order to use this utility library, you need to import LuigiMockModule into your Angular application's entry point - more details [here](https://docs.luigi-project.io/docs/framework-support-libraries/?section=luigicontextservice). You also have to install [Cypress](https://www.npmjs.com/package/cypress) or [Nightwatch](https://www.npmjs.com/package/nightwatch) or [WebdriverIO](https://www.npmjs.com/package/webdriverio) or [Puppeteer](https://www.npmjs.com/package/puppeteer) or [Protractor](https://www.npmjs.com/package/protractor) locally as a dev dependency for your project. Bear in mind Protractor is deprecated in Angular since version 15._
|
|
12
16
|
|
|
13
17
|
|
|
14
18
|
1. Import the library in the `package.json`:
|
|
@@ -18,16 +22,16 @@ npm install @luigi-project/testing-utilities -s
|
|
|
18
22
|
|
|
19
23
|
2. Once the library is imported and saved in your Angular project, you can now import the module `LuigiMockUtil` into your test:
|
|
20
24
|
```javascript
|
|
21
|
-
import { LuigiMockUtil } from
|
|
25
|
+
import { LuigiMockUtil } from '@luigi-project/testing-utilities';
|
|
22
26
|
```
|
|
23
27
|
|
|
24
|
-
|
|
28
|
+
### Example how to use the library with Protractor
|
|
25
29
|
|
|
26
30
|
```javascript
|
|
27
31
|
import { browser } from 'protractor'; // <-- target e2e testing library
|
|
28
|
-
import { LuigiMockUtil } from
|
|
32
|
+
import { LuigiMockUtil } from '@luigi-project/testing-utilities';
|
|
29
33
|
|
|
30
|
-
describe('Another test', () => {
|
|
34
|
+
describe('Another test using protractor', () => {
|
|
31
35
|
let luigiMockUtil: LuigiMockUtil;
|
|
32
36
|
|
|
33
37
|
beforeAll(async () => {
|
|
@@ -39,13 +43,211 @@ describe('Another test', () => {
|
|
|
39
43
|
someData: '1',
|
|
40
44
|
someOtherData: 'randomInfo',
|
|
41
45
|
});
|
|
42
|
-
}
|
|
43
|
-
}
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
### Example how to use the library with Cypress
|
|
51
|
+
|
|
52
|
+
```javascript
|
|
53
|
+
import { LuigiMockUtil } from '@luigi-project/testing-utilities';
|
|
54
|
+
|
|
55
|
+
describe('Another test using cypress', () => {
|
|
56
|
+
let luigiMockUtil: LuigiMockUtil;
|
|
57
|
+
|
|
58
|
+
beforeEach(() => {
|
|
59
|
+
// Necessary to execute the functions from LuigiMockUtil in Cypress context
|
|
60
|
+
// and get the window object of the page that is currently active
|
|
61
|
+
cy.window().then((win: any) => {
|
|
62
|
+
luigiMockUtil = new LuigiMockUtil((fn: any) => {
|
|
63
|
+
return new Promise((resolve, reject) => {
|
|
64
|
+
resolve(fn());
|
|
65
|
+
});
|
|
66
|
+
}, win);
|
|
67
|
+
});
|
|
68
|
+
// Necessary that luigi-client sends postmessages to the same window
|
|
69
|
+
// and not to parent (which is Cypress engine)
|
|
70
|
+
cy.visit('http://localhost:4200', {
|
|
71
|
+
onBeforeLoad: (win) => {
|
|
72
|
+
win["parent"] = win;
|
|
73
|
+
}
|
|
74
|
+
});
|
|
75
|
+
});
|
|
76
|
+
|
|
77
|
+
it('should mock path exists', () => {
|
|
78
|
+
// Be sure '.pathExists' element is present
|
|
79
|
+
cy.get('.pathExists').click().then(() => {
|
|
80
|
+
luigiMockUtil.mockPathExists('/test', false);
|
|
81
|
+
});
|
|
82
|
+
cy.getAllSessionStorage().then((result: any) => {
|
|
83
|
+
expect(result).to.deep.equal({
|
|
84
|
+
"http://localhost:4200": {
|
|
85
|
+
luigiMockData: '{"pathExists":{"/test":false}}'
|
|
86
|
+
},
|
|
87
|
+
});
|
|
88
|
+
})
|
|
89
|
+
});
|
|
90
|
+
|
|
91
|
+
it('should mock context update', () => {
|
|
92
|
+
const context = {ctxKey: 'ctxValue'};
|
|
93
|
+
|
|
94
|
+
luigiMockUtil.mockContext(context);
|
|
95
|
+
cy.get('#luigi-debug-vis-cnt').contains('{"msg":"luigi.get-context","context":{"ctxKey":"ctxValue"}}');
|
|
96
|
+
});
|
|
97
|
+
});
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
### Example how to use the library with Nightwatch
|
|
101
|
+
|
|
102
|
+
```javascript
|
|
103
|
+
import { browser } from 'nightwatch'; // <-- target e2e testing library
|
|
104
|
+
import { LuigiMockUtil } from '@luigi-project/testing-utilities';
|
|
105
|
+
|
|
106
|
+
describe('Another test using nightwatch', function () {
|
|
107
|
+
const luigiMockUtil: LuigiMockUtil = new LuigiMockUtil(browser);
|
|
108
|
+
|
|
109
|
+
before((browser) => browser.navigateTo('http://localhost:4200'));
|
|
110
|
+
|
|
111
|
+
it('should mock path exists', async () => {
|
|
112
|
+
// Be sure '.pathExists' element is present
|
|
113
|
+
await browser.expect.element('.pathExists').to.be.present;
|
|
114
|
+
await browser.element('.pathExists').click().then(() => {
|
|
115
|
+
luigiMockUtil.mockPathExists('/test', false);
|
|
116
|
+
browser.execute(() => window.sessionStorage.getItem('luigiMockData'), [], function (result) {
|
|
117
|
+
expect(result.value).to.contains('{"pathExists":{"/test":false}}');
|
|
118
|
+
});
|
|
119
|
+
});
|
|
120
|
+
});
|
|
121
|
+
|
|
122
|
+
it('should mock context update', async () => {
|
|
123
|
+
const context = {ctxKey: 'ctxValue'};
|
|
124
|
+
|
|
125
|
+
await luigiMockUtil.mockContext(context);
|
|
126
|
+
// Wait until '#luigi-debug-vis-cnt' element is present
|
|
127
|
+
await browser.waitForElementPresent('#luigi-debug-vis-cnt', undefined, undefined, false, () => {
|
|
128
|
+
const wrapper = browser.expect.element('#luigi-debug-vis-cnt');
|
|
129
|
+
|
|
130
|
+
wrapper.to.be.present;
|
|
131
|
+
wrapper.text.to.contains('{"msg":"luigi.get-context","context":{"ctxKey":"ctxValue"}}');
|
|
132
|
+
});
|
|
133
|
+
});
|
|
134
|
+
|
|
135
|
+
after((browser) => browser.end());
|
|
136
|
+
});
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
### Example how to use the library with WebdriverIO
|
|
140
|
+
|
|
141
|
+
```javascript
|
|
142
|
+
import { browser } from '@wdio/globals'; // <-- target e2e testing library
|
|
143
|
+
import { LuigiMockUtil } from '@luigi-project/testing-utilities';
|
|
144
|
+
|
|
145
|
+
describe('Another test using webdriverio', () => {
|
|
146
|
+
const baseUrl = 'http://localhost:4200';
|
|
147
|
+
const defaultTimeout = { 'implicit': 500 };
|
|
148
|
+
let luigiMockUtil: LuigiMockUtil;
|
|
149
|
+
|
|
150
|
+
it('should mock path exists', async () => {
|
|
151
|
+
luigiMockUtil = new LuigiMockUtil(browser);
|
|
152
|
+
|
|
153
|
+
await browser.url(baseUrl);
|
|
154
|
+
// Be sure '.pathExists' element is present
|
|
155
|
+
await $('.pathExists').click().then(() => {
|
|
156
|
+
luigiMockUtil.mockPathExists('/test', false);
|
|
157
|
+
});
|
|
158
|
+
// Wait until session storage item is set
|
|
159
|
+
await browser.setTimeout(defaultTimeout);
|
|
160
|
+
|
|
161
|
+
const result = await browser.execute(() => window.sessionStorage.getItem('luigiMockData'));
|
|
162
|
+
|
|
163
|
+
await expect(result).toEqual('{"pathExists":{"/test":false}}');
|
|
164
|
+
});
|
|
165
|
+
|
|
166
|
+
it('should mock context update', async () => {
|
|
167
|
+
luigiMockUtil = new LuigiMockUtil(browser);
|
|
168
|
+
|
|
169
|
+
const context = {ctxKey: 'ctxValue'};
|
|
170
|
+
|
|
171
|
+
await browser.url(baseUrl);
|
|
172
|
+
await luigiMockUtil.mockContext(context);
|
|
173
|
+
// Wait until '#luigi-debug-vis-cnt' element is present
|
|
174
|
+
await browser.setTimeout(defaultTimeout);
|
|
175
|
+
await expect($('#luigi-debug-vis-cnt')).toHaveHTML(expect.stringContaining('{"msg":"luigi.get-context","context":{"ctxKey":"ctxValue"}}'));
|
|
176
|
+
});
|
|
177
|
+
});
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
### Example how to use the library with Puppeteer
|
|
181
|
+
|
|
182
|
+
```javascript
|
|
183
|
+
import * as puppeteer from 'puppeteer'; // <-- target e2e testing library
|
|
184
|
+
import { LuigiMockUtil } from '@luigi-project/testing-utilities';
|
|
185
|
+
|
|
186
|
+
let luigiMockUtil: LuigiMockUtil;
|
|
187
|
+
let browser: puppeteer.Browser;
|
|
188
|
+
let page: puppeteer.Page;
|
|
189
|
+
|
|
190
|
+
describe('Another test using puppeteer ->', () => {
|
|
191
|
+
beforeAll(async () => {
|
|
192
|
+
browser = await puppeteer.launch({
|
|
193
|
+
args: ['--no-sandbox'],
|
|
194
|
+
headless: false,
|
|
195
|
+
ignoreDefaultArgs: ['--disable-extensions'],
|
|
196
|
+
});
|
|
197
|
+
});
|
|
198
|
+
|
|
199
|
+
beforeEach(async () => {
|
|
200
|
+
page = await browser.newPage();
|
|
201
|
+
luigiMockUtil = new LuigiMockUtil(page);
|
|
202
|
+
|
|
203
|
+
await page?.goto('http://localhost:4200', {timeout: 0});
|
|
204
|
+
});
|
|
205
|
+
|
|
206
|
+
afterEach(async () => {
|
|
207
|
+
await page?.close();
|
|
208
|
+
});
|
|
209
|
+
|
|
210
|
+
afterAll(async () => {
|
|
211
|
+
await browser?.close();
|
|
212
|
+
});
|
|
213
|
+
|
|
214
|
+
it('should mock path exists', async () => {
|
|
215
|
+
// Be sure '.pathExists' element is present
|
|
216
|
+
await page.waitForSelector('.pathExists').then(async () => {
|
|
217
|
+
await expect(page.locator('.pathExists').wait()).toBeTruthy();
|
|
218
|
+
|
|
219
|
+
await page.click('.pathExists').then(async () => {
|
|
220
|
+
await luigiMockUtil.mockPathExists('/test', false);
|
|
221
|
+
// Wait until session storage item is set
|
|
222
|
+
await new Promise(resolve => setTimeout(resolve, 500));
|
|
223
|
+
|
|
224
|
+
const result = await page.evaluate(() => window.sessionStorage.getItem('luigiMockData'));
|
|
225
|
+
|
|
226
|
+
await expect(result).toContain('{"pathExists":{"/test":false}}');
|
|
227
|
+
});
|
|
228
|
+
});
|
|
229
|
+
});
|
|
230
|
+
|
|
231
|
+
it('should mock context update', async () => {
|
|
232
|
+
const context = {ctxKey: 'ctxValue'};
|
|
233
|
+
|
|
234
|
+
await luigiMockUtil.mockContext(context);
|
|
235
|
+
// Wait until '#luigi-debug-vis-cnt' element is present
|
|
236
|
+
await page.waitForSelector('#luigi-debug-vis-cnt').then(async () => {
|
|
237
|
+
const result = await page
|
|
238
|
+
.locator('#luigi-debug-vis-cnt div:nth-child(1)')
|
|
239
|
+
.map(div => div.innerText)
|
|
240
|
+
.wait();
|
|
241
|
+
|
|
242
|
+
expect(result).toContain('{"msg":"luigi.get-context","context":{"ctxKey":"ctxValue"}}');
|
|
243
|
+
});
|
|
244
|
+
});
|
|
245
|
+
});
|
|
44
246
|
```
|
|
45
247
|
|
|
46
248
|
#### Functions provided
|
|
47
|
-
- **mockContext**: Mocks the context by sending Luigi context messages with the desired mocked context as parameter.
|
|
249
|
+
- **mockContext**: Mocks the context by sending Luigi context messages with the desired mocked context as parameter.
|
|
48
250
|
- **mockPathExists**: This method serves as a mock for the Luigi Client `pathExists()` function. It is used in e2e tests when component being tested utilizes a call to `LuigiClient.linkManager().pathExists()`
|
|
49
251
|
- **modalOpenedWithTitle**: Checks on the printed DOM Luigi message responses for a modal with given title being opened. In such a case, a message would be printed containing a `modal.title`. Returns `false` if such element was not found.
|
|
50
|
-
- **getMSG**: Return list of messages, representing message elements added in the DOM for testing.
|
|
51
|
-
- **parseLuigiMockedMessages**: Parses the elements added by LuigiMockModule into the DOM and assigns them to the local messages variable
|
|
252
|
+
- **getMSG**: Return list of messages, representing message elements added in the DOM for testing.
|
|
253
|
+
- **parseLuigiMockedMessages**: Parses the elements added by LuigiMockModule into the DOM and assigns them to the local messages variable
|
package/luigi-mock-util.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ export declare class LuigiMockUtil {
|
|
|
17
17
|
* Mocks the context by sending luigi context messages with the desired mocked context as parameter.
|
|
18
18
|
* @param mockContext an object representing the context to be mocked
|
|
19
19
|
*/
|
|
20
|
-
mockContext: (mockContext: any) => void;
|
|
20
|
+
mockContext: (mockContext: Record<string, any>) => void;
|
|
21
21
|
/**
|
|
22
22
|
* This method serves as a mock for the luigi client pathExists() function.
|
|
23
23
|
* It is used in e2e tests when component being tested utilizes a call to `LuigiClient.linkManager().pathExists()`
|
package/luigi-mock-util.js
CHANGED
|
@@ -5,21 +5,29 @@ export class LuigiMockUtil {
|
|
|
5
5
|
* @param mockContext an object representing the context to be mocked
|
|
6
6
|
*/
|
|
7
7
|
this.mockContext = (mockContext) => {
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
const window = this.getGlobalThis();
|
|
9
|
+
const postMessageToLuigi = (context) => {
|
|
10
|
+
window.postMessage({ msg: 'luigi.get-context', context }, '*');
|
|
11
|
+
return Object.assign(Object.assign({}, context), { windowMessage: 'isPosted' });
|
|
12
12
|
};
|
|
13
13
|
try {
|
|
14
|
-
|
|
15
|
-
this.browser
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
this.browser
|
|
14
|
+
switch (true) {
|
|
15
|
+
case 'evaluate' in this.browser:
|
|
16
|
+
this.browser.evaluate(postMessageToLuigi, mockContext);
|
|
17
|
+
break;
|
|
18
|
+
case 'execute' in this.browser:
|
|
19
|
+
this.browser.execute(postMessageToLuigi, mockContext);
|
|
20
|
+
break;
|
|
21
|
+
case 'executeScript' in this.browser:
|
|
22
|
+
this.browser.executeScript(postMessageToLuigi, mockContext);
|
|
23
|
+
break;
|
|
24
|
+
default:
|
|
25
|
+
this.browser(postMessageToLuigi.bind(this, mockContext));
|
|
26
|
+
break;
|
|
19
27
|
}
|
|
20
28
|
}
|
|
21
|
-
catch (
|
|
22
|
-
console.debug('Failed to mock context: ',
|
|
29
|
+
catch (error) {
|
|
30
|
+
console.debug('Failed to mock context: ', error);
|
|
23
31
|
}
|
|
24
32
|
};
|
|
25
33
|
/**
|
|
@@ -39,32 +47,42 @@ export class LuigiMockUtil {
|
|
|
39
47
|
*
|
|
40
48
|
*/
|
|
41
49
|
this.mockPathExists = (path, exists) => {
|
|
42
|
-
const
|
|
50
|
+
const window = this.getGlobalThis();
|
|
51
|
+
const mockContext = { path, exists };
|
|
43
52
|
/**
|
|
44
53
|
* Sets the path exists mock data in sessionStorage.
|
|
45
54
|
* @param {string} path - The path for which mock data is to be set.
|
|
46
55
|
* @param {boolean} exists - Boolean indicating whether the path exists.
|
|
47
|
-
* @returns {
|
|
56
|
+
* @returns {Object} - Object indicating session storage item.
|
|
48
57
|
*/
|
|
49
|
-
const setPathExistsMockData = () => {
|
|
50
|
-
|
|
51
|
-
|
|
58
|
+
const setPathExistsMockData = (context) => {
|
|
59
|
+
window.sessionStorage.clear();
|
|
60
|
+
const pathExistsMockData = {
|
|
52
61
|
pathExists: {
|
|
53
|
-
[path]: exists
|
|
62
|
+
[context['path']]: context['exists']
|
|
54
63
|
}
|
|
55
64
|
};
|
|
56
|
-
|
|
65
|
+
window.sessionStorage.setItem('luigiMockData', JSON.stringify(pathExistsMockData));
|
|
66
|
+
return Object.assign(Object.assign({}, pathExistsMockData), { sessionItem: 'isStored' });
|
|
57
67
|
};
|
|
58
68
|
try {
|
|
59
|
-
|
|
60
|
-
this.browser
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
this.browser
|
|
69
|
+
switch (true) {
|
|
70
|
+
case 'evaluate' in this.browser:
|
|
71
|
+
this.browser.evaluate(setPathExistsMockData, mockContext);
|
|
72
|
+
break;
|
|
73
|
+
case 'execute' in this.browser:
|
|
74
|
+
this.browser.execute(setPathExistsMockData, mockContext);
|
|
75
|
+
break;
|
|
76
|
+
case 'executeScript' in this.browser:
|
|
77
|
+
this.browser.executeScript(setPathExistsMockData, mockContext);
|
|
78
|
+
break;
|
|
79
|
+
default:
|
|
80
|
+
this.browser(setPathExistsMockData.bind(this, mockContext));
|
|
81
|
+
break;
|
|
64
82
|
}
|
|
65
83
|
}
|
|
66
|
-
catch (
|
|
67
|
-
console.debug('Failed to mock path exists: ',
|
|
84
|
+
catch (error) {
|
|
85
|
+
console.debug('Failed to mock path exists: ', error);
|
|
68
86
|
}
|
|
69
87
|
};
|
|
70
88
|
this.messages = [];
|
|
@@ -83,15 +101,27 @@ export class LuigiMockUtil {
|
|
|
83
101
|
* @returns {Promise<void>} - A Promise that resolves when parsing is complete.
|
|
84
102
|
*/
|
|
85
103
|
async parseLuigiMockedMessages() {
|
|
104
|
+
const window = this.getGlobalThis();
|
|
105
|
+
const getTextNodeValues = () => {
|
|
106
|
+
const debugCtn = window.getElementById('luigi-debug-vis-cnt');
|
|
107
|
+
return Array.from((debugCtn === null || debugCtn === void 0 ? void 0 : debugCtn.childNodes) || []).map((item) => item.textContent || '');
|
|
108
|
+
};
|
|
109
|
+
let textElements;
|
|
86
110
|
try {
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
111
|
+
switch (true) {
|
|
112
|
+
case 'evaluate' in this.browser:
|
|
113
|
+
this.browser.evaluate(getTextNodeValues);
|
|
114
|
+
break;
|
|
115
|
+
case 'execute' in this.browser:
|
|
116
|
+
this.browser.execute(getTextNodeValues);
|
|
117
|
+
break;
|
|
118
|
+
case 'executeScript' in this.browser:
|
|
119
|
+
this.browser.executeScript(getTextNodeValues);
|
|
120
|
+
break;
|
|
121
|
+
default:
|
|
122
|
+
this.browser(getTextNodeValues);
|
|
123
|
+
break;
|
|
124
|
+
}
|
|
95
125
|
this.messages = textElements
|
|
96
126
|
.map((item) => {
|
|
97
127
|
try {
|
|
@@ -103,8 +133,8 @@ export class LuigiMockUtil {
|
|
|
103
133
|
})
|
|
104
134
|
.filter((item) => item !== undefined);
|
|
105
135
|
}
|
|
106
|
-
catch (
|
|
107
|
-
console.debug('Failed to parse luigi mocked messages: ',
|
|
136
|
+
catch (error) {
|
|
137
|
+
console.debug('Failed to parse luigi mocked messages: ', error);
|
|
108
138
|
}
|
|
109
139
|
}
|
|
110
140
|
/**
|