Skip to content

Commit cae5ca4

Browse files
committed
production: + test for case insensitivity in search, * price parsing
1 parent 0039bbf commit cae5ca4

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

src/data/search-data.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
const searchData = {
22
search: 'Ice',
3+
searchLowerCase: 'ice',
34
level: 'easy',
45
duration: '5_x_10',
56
levelNotSet: '',

src/specs/base/main-page.spec.ts

+21
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,27 @@ describe('Main Page', async function () {
4949
expect(titles.length).toEqual(filteredTitles.length);
5050
});
5151

52+
it('should filter cards by search case insensitive', async function () {
53+
const { searchLowerCase } = searchData;
54+
const searchRegExp = new RegExp(searchLowerCase, 'i');
55+
56+
await mainActions.openPage();
57+
await mainActions.searchByTitle(searchLowerCase);
58+
const tripItemsCount = await tripListComponent.Trips.length;
59+
60+
const titles = await Promise.all(
61+
Array.from(new Array(tripItemsCount)).map((_e, i) => {
62+
return tripListComponent.getTitleContentForItem(i).getText();
63+
}),
64+
);
65+
66+
const filteredTitles = titles.filter(
67+
(title) => title.search(searchRegExp) !== -1,
68+
);
69+
70+
expect(titles.length).toEqual(filteredTitles.length);
71+
});
72+
5273
it('should filter cards by level', async function () {
5374
const { level } = searchData;
5475

src/specs/base/trip-page.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ describe('Trip Page', async function () {
6060

6161
await tripActions.fillBookTripForm({ date, guests: guestsMin });
6262
const priceString = await bookTripModalComponent.Price_Content.getText();
63-
const price = parseFloat(priceString);
63+
const price = parseInt(priceString.replace(/\D/g, ''));
6464

6565
await tripActions.fillBookTripForm({ date, guests });
6666
const newPriceString = await bookTripModalComponent.Price_Content.getText();
67-
const newPrice = parseFloat(newPriceString);
67+
const newPrice = parseInt(newPriceString.replace(/\D/g, ''));
6868

6969
expect(newPrice).toEqual((price / guestsMin) * guests);
7070
});

0 commit comments

Comments
 (0)