Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-10-20 12:40:42 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-10-20 12:40:42 +0300
commitee664acb356f8123f4f6b00b73c1e1cf0866c7fb (patch)
treef8479f94a28f66654c6a4f6fb99bad6b4e86a40e /spec/frontend/blame/blame_redirect_spec.js
parent62f7d5c5b69180e82ae8196b7b429eeffc8e7b4f (diff)
Add latest changes from gitlab-org/gitlab@15-5-stable-eev15.5.0-rc42
Diffstat (limited to 'spec/frontend/blame/blame_redirect_spec.js')
-rw-r--r--spec/frontend/blame/blame_redirect_spec.js70
1 files changed, 70 insertions, 0 deletions
diff --git a/spec/frontend/blame/blame_redirect_spec.js b/spec/frontend/blame/blame_redirect_spec.js
new file mode 100644
index 00000000000..beb10139b3a
--- /dev/null
+++ b/spec/frontend/blame/blame_redirect_spec.js
@@ -0,0 +1,70 @@
+import redirectToCorrectPage from '~/blame/blame_redirect';
+import { setHTMLFixture, resetHTMLFixture } from 'helpers/fixtures';
+import { createAlert } from '~/flash';
+
+jest.mock('~/flash');
+
+describe('Blame page redirect', () => {
+ beforeEach(() => {
+ global.window = Object.create(window);
+ const url = 'https://gitlab.com/flightjs/Flight/-/blame/master/file.json';
+ Object.defineProperty(window, 'location', {
+ writable: true,
+ value: {
+ href: url,
+ hash: '',
+ search: '',
+ },
+ });
+
+ setHTMLFixture(`<div class="js-per-page" data-per-page="1000"></div>`);
+ });
+
+ afterEach(() => {
+ createAlert.mockClear();
+ resetHTMLFixture();
+ });
+
+ it('performs redirect to further pages when needed', () => {
+ window.location.hash = '#L1001';
+ redirectToCorrectPage();
+ expect(window.location.href).toMatch('?page=2');
+ });
+
+ it('performs redirect back to first page when needed', () => {
+ window.location.href = 'https://gitlab.com/flightjs/Flight/-/blame/master/file.json';
+ window.location.search = '?page=200';
+ window.location.hash = '#L999';
+ redirectToCorrectPage();
+ expect(window.location.href).toMatch('?page=1');
+ });
+
+ it('doesn`t perform redirect when the line is still on page 1', () => {
+ window.location.hash = '#L1000';
+ redirectToCorrectPage();
+ expect(window.location.href).not.toMatch('?page');
+ });
+
+ it('doesn`t perform redirect when "no_pagination" param is present', () => {
+ window.location.href = 'https://gitlab.com/flightjs/Flight/-/blame/master/file.json';
+ window.location.search = '?no_pagination=true';
+ window.location.hash = '#L1001';
+ redirectToCorrectPage();
+ expect(window.location.href).not.toMatch('?page');
+ });
+
+ it('doesn`t perform redirect when perPage is not present', () => {
+ setHTMLFixture(`<div class="js-per-page"></div>`);
+ window.location.hash = '#L1001';
+ redirectToCorrectPage();
+ expect(window.location.href).not.toMatch('?page');
+ });
+
+ it('shows alert with a message', () => {
+ window.location.hash = '#L1001';
+ redirectToCorrectPage();
+ expect(createAlert).toHaveBeenCalledWith({
+ message: 'Please wait a few moments while we load the file history for this line.',
+ });
+ });
+});