Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 fix, additional full page options is not working #355

Merged
merged 1 commit into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions percy/providers/genericProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,14 @@ class GenericProvider {
considerRegionAppiumElements,
customConsiderRegions,
scrollableXpath,
topScrollviewOffset,
bottomScrollviewOffset,
scrollableId,
sync,
testCase,
thTestCaseExecutionId
thTestCaseExecutionId,
androidScrollAreaPercentage,
scrollSpeed
}) {
fullscreen = fullscreen || false;
sync = sync || null;
Expand All @@ -68,7 +72,17 @@ class GenericProvider {
});

const tag = await this.getTag();
const tiles = await this.getTiles(fullscreen, fullPage, screenLengths, scrollableXpath, scrollableId);
const tiles = await this.getTiles(
fullscreen,
fullPage,
screenLengths,
scrollableXpath,
topScrollviewOffset,
bottomScrollviewOffset,
scrollableId,
androidScrollAreaPercentage,
scrollSpeed
);
const ignoreRegions = await this.findRegions(
ignoreRegionXpaths, ignoreRegionAccessibilityIds, ignoreRegionAppiumElements, customIgnoreRegions
);
Expand Down
33 changes: 20 additions & 13 deletions test/index.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,15 @@ describe('percyScreenshot', () => {
it('posts full page screenshot to the local percy server', async () => {
driver = driverFunc({ platform, appAutomate });

await percyScreenshot(driver, 'Screenshot 1', { fullPage: true });
await percyScreenshot(driver, 'Screenshot 2', { fullPage: true });
await percyScreenshot(driver, 'Screenshot 1', {
fullPage: true,
androidScrollAreaPercentage: 100
});
await percyScreenshot(driver, 'Screenshot 2', {
fullPage: true,
androidScrollAreaPercentage: 100,
bottomScrollviewOffset: 100
});

expect(await helpers.get('logs')).toEqual(jasmine.arrayContaining([
'Snapshot found: Screenshot 1',
Expand Down Expand Up @@ -242,7 +249,7 @@ describe('percyScreenshot', () => {

it('should call POA percyScreenshot', async () => {
const driver = driverFunc({ enabled: true });
spyOn(percyScreenshot, 'isPercyEnabled').and.returnValue(Promise.resolve(true))
spyOn(percyScreenshot, 'isPercyEnabled').and.returnValue(Promise.resolve(true));
utils.percy.type = 'automate';
const mockresponse = {};
spyOn(percyOnAutomate, 'request').and.callFake(() => mockresponse);
Expand All @@ -259,7 +266,7 @@ describe('percyScreenshot', () => {
const element = { value: '123', elementId: '123' };
const element2 = { value: '456', elementId: '456' };
const driver = driverFunc({ enabled: true });
spyOn(percyScreenshot, 'isPercyEnabled').and.returnValue(Promise.resolve(true))
spyOn(percyScreenshot, 'isPercyEnabled').and.returnValue(Promise.resolve(true));
utils.percy.type = 'automate';
spyOn(percyOnAutomate, 'request').and.callFake(() => {});

Expand Down Expand Up @@ -294,23 +301,23 @@ describe('percyScreenshot', () => {
}));
});

it('should return CLI response', async() => {
it('should return CLI response', async () => {
const mockResponse = {
success: true,
body: { data: { name: 'test_snapshot', some_data: 'some_data', some_obj: { some_obj: 'some_obj' }}}
}
body: { data: { name: 'test_snapshot', some_data: 'some_data', some_obj: { some_obj: 'some_obj' } } }
};
const driver = driverFunc({ enabled: true });
spyOn(percyScreenshot, 'isPercyEnabled').and.returnValue(Promise.resolve(true))
spyOn(percyScreenshot, 'isPercyEnabled').and.returnValue(Promise.resolve(true));
utils.percy.type = 'automate';

spyOn(percyOnAutomate, 'request').and.callFake(() => mockResponse);
const response = await percyScreenshot(driver, 'Screenshot 1', { sync: true })
expect(response).toEqual(mockResponse.body.data)
})
const response = await percyScreenshot(driver, 'Screenshot 1', { sync: true });
expect(response).toEqual(mockResponse.body.data);
});

it('should handle error POA', async () => {
const driver = driverFunc({ enabled: true, ignoreErrors: false });
spyOn(percyScreenshot, 'isPercyEnabled').and.returnValue(Promise.resolve(true))
spyOn(percyScreenshot, 'isPercyEnabled').and.returnValue(Promise.resolve(true));
utils.percy.type = 'automate';
spyOn(percyOnAutomate, 'request').and.returnValue(Promise.reject(new Error('Not found 404')));
let error = null;
Expand All @@ -324,7 +331,7 @@ describe('percyScreenshot', () => {

it('should handle error POA ignoreError false', async () => {
const driver = driverFunc({ enabled: true, ignoreErrors: true });
spyOn(percyScreenshot, 'isPercyEnabled').and.returnValue(Promise.resolve(true))
spyOn(percyScreenshot, 'isPercyEnabled').and.returnValue(Promise.resolve(true));
utils.percy.type = 'automate';
spyOn(percyOnAutomate, 'request').and.returnValue(Promise.reject(new Error('Not found 404')));
let error = null;
Expand Down
29 changes: 29 additions & 0 deletions test/percy/providers/appAutomateProvider.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,35 @@ describe('AppAutomateProvider', () => {
expect(browserstackExecutorSpy).toHaveBeenCalledWith('percyScreenshot', args);
});
});

describe('when other options are passed', () => {
it('takes screenshot with remote executor with "percy-dev" as projectId', async () => {
const appAutomate = new AppAutomateProvider(driver);
spyOn(AppAutomateProvider.prototype, 'isPercyDev')
.and.returnValue('true');
let superGetTilesSpy = spyOn(GenericProvider.prototype, 'getTiles');
let browserstackExecutorSpy = spyOn(AppAutomateProvider.prototype, 'browserstackExecutor');
superGetTilesSpy.and.resolveTo([]);
let response = {
success: true,
result: JSON.stringify([{ header_height: 100, footer_height: 200, sha: 'abc' }])
};
browserstackExecutorSpy.and.resolveTo(response);
var screenSize = {
height: 2000
};
args.projectId = 'percy-dev';
args.options.deviceHeight = screenSize.height;
args.options.topScrollviewOffset = 100;
args.options.bottomScrollviewOffset = 250;
args.options.androidScrollAreaPercentage = 50;
args.options.scrollSpeed = 500;
args.screenshotType = 'fullpage';
appAutomate.metadata = { statusBarHeight: () => 100, navigationBarHeight: () => 200, scaleFactor: () => 1, screenSize: () => screenSize };
await appAutomate.getTiles(true, true, null, null, 100, 250, null, 50, 500);
expect(browserstackExecutorSpy).toHaveBeenCalledWith('percyScreenshot', args);
});
});
});
});
});
Loading