-
Notifications
You must be signed in to change notification settings - Fork 392
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'devel' into CB-5810-wrong-style
- Loading branch information
Showing
12 changed files
with
246 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
167 changes: 167 additions & 0 deletions
167
webapp/packages/core-resource/src/Resource/CachedResourceOffsetPageKeys.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,167 @@ | ||
/* | ||
* CloudBeaver - Cloud Database Manager | ||
* Copyright (C) 2020-2024 DBeaver Corp and others | ||
* | ||
* Licensed under the Apache License, Version 2.0. | ||
* you may not use this file except in compliance with the License. | ||
*/ | ||
import { describe, expect, test } from '@jest/globals'; | ||
|
||
import { expandOffsetPageRange, getNextPageOffset, type ICachedResourceOffsetPage } from './CachedResourceOffsetPageKeys.js'; | ||
import type { IResourceOffsetPage } from './OffsetPagination/IResourceOffsetPage.js'; | ||
import { ResourceOffsetPage } from './OffsetPagination/ResourceOffsetPage.js'; | ||
|
||
describe('CachedResourceOffsetPageKeys', () => { | ||
describe('expandOffsetPageRange', () => { | ||
test('should add first page', () => { | ||
const randomPage = getRandomPage(0, 100, false); | ||
const pages: IResourceOffsetPage[] = []; | ||
expandOffsetPageRange(pages, { offset: randomPage.from, limit: randomPage.to - randomPage.from }, randomPage.items, false, true); | ||
|
||
expect(pages).toStrictEqual([randomPage]); | ||
}); | ||
|
||
test('should add sequential pages', () => { | ||
const pages: IResourceOffsetPage[] = []; | ||
const initialPages: IResourceOffsetPage[] = []; | ||
|
||
for (let i = 0; i < 10; i++) { | ||
const randomPage = getRandomPage(i * 100, 100, false); | ||
initialPages.push(randomPage); | ||
expandOffsetPageRange(pages, { offset: randomPage.from, limit: randomPage.to - randomPage.from }, randomPage.items, false, true); | ||
} | ||
|
||
expect(pages).toStrictEqual(initialPages); | ||
}); | ||
|
||
test('should add sequential pages with gaps', () => { | ||
const pages: IResourceOffsetPage[] = []; | ||
const initialPages: IResourceOffsetPage[] = []; | ||
|
||
for (let i = 0; i < 5; i++) { | ||
const randomPage = getRandomPage(i * 100, 100, false); | ||
initialPages.push(randomPage); | ||
expandOffsetPageRange(pages, { offset: randomPage.from, limit: randomPage.to - randomPage.from }, randomPage.items, false, true); | ||
} | ||
|
||
const randomPage = getRandomPage(6 * 100, 100, false); | ||
initialPages.push(randomPage); | ||
expandOffsetPageRange(pages, { offset: randomPage.from, limit: randomPage.to - randomPage.from }, randomPage.items, false, true); | ||
|
||
expect(pages).toStrictEqual(initialPages); | ||
}); | ||
|
||
test('should add page in a gap', () => { | ||
const pages: IResourceOffsetPage[] = []; | ||
const initialPages: IResourceOffsetPage[] = []; | ||
|
||
for (let i = 0; i < 5; i++) { | ||
const randomPage = getRandomPage(i * 100, 100, false); | ||
initialPages.push(randomPage); | ||
expandOffsetPageRange(pages, { offset: randomPage.from, limit: randomPage.to - randomPage.from }, randomPage.items, false, true); | ||
} | ||
|
||
const randomPage = getRandomPage(6 * 100, 100, false); | ||
const gapIndex = initialPages.push(randomPage); | ||
expandOffsetPageRange(pages, { offset: randomPage.from, limit: randomPage.to - randomPage.from }, randomPage.items, false, true); | ||
|
||
const gapPage = getRandomPage(5 * 100, 100, false); | ||
initialPages.splice(gapIndex - 1, 0, gapPage); | ||
expandOffsetPageRange(pages, { offset: gapPage.from, limit: gapPage.to - gapPage.from }, gapPage.items, false, true); | ||
|
||
expect(pages).toStrictEqual(initialPages); | ||
}); | ||
|
||
test('should shrink pages', () => { | ||
const pages: IResourceOffsetPage[] = []; | ||
const initialPages: IResourceOffsetPage[] = []; | ||
|
||
for (let i = 0; i < 10; i++) { | ||
const randomPage = getRandomPage(i * 100, 100, false); | ||
initialPages.push(randomPage); | ||
expandOffsetPageRange(pages, { offset: randomPage.from, limit: randomPage.to - randomPage.from }, randomPage.items, false, true); | ||
} | ||
|
||
const randomPage = getRandomPage(50, 100, false); | ||
initialPages[0]?.setSize(0, 50); | ||
initialPages[1]?.setSize(150, 200); | ||
initialPages.splice(1, 0, randomPage); | ||
expandOffsetPageRange(pages, { offset: randomPage.from, limit: randomPage.to - randomPage.from }, randomPage.items, false, true); | ||
|
||
expect(pages).toStrictEqual(initialPages); | ||
}); | ||
|
||
test('should remove pages after end', () => { | ||
const pages: IResourceOffsetPage[] = []; | ||
const initialPages: IResourceOffsetPage[] = []; | ||
|
||
for (let i = 0; i < 10; i++) { | ||
const randomPage = getRandomPage(i * 100, 100, false); | ||
initialPages.push(randomPage); | ||
expandOffsetPageRange(pages, { offset: randomPage.from, limit: randomPage.to - randomPage.from }, randomPage.items, false, true); | ||
} | ||
|
||
const randomPage = getRandomPage(300, 100, false); | ||
initialPages.splice(4); | ||
expandOffsetPageRange(pages, { offset: randomPage.from, limit: randomPage.to - randomPage.from }, randomPage.items, false, false); | ||
|
||
expect(pages).toStrictEqual(initialPages); | ||
}); | ||
}); | ||
|
||
describe('getNextPageOffset', () => { | ||
test('should return next page offset', () => { | ||
const randomPage = getRandomPage(0, 100, false); | ||
const pageInfo: ICachedResourceOffsetPage = { | ||
pages: [randomPage], | ||
}; | ||
expect(getNextPageOffset(pageInfo)).toBe(100); | ||
}); | ||
test('should return next page offset with multiple pages', () => { | ||
const pages = []; | ||
for (let i = 0; i < 10; i++) { | ||
pages.push(getRandomPage(i * 100, 100, false)); | ||
} | ||
const pageInfo: ICachedResourceOffsetPage = { | ||
pages, | ||
}; | ||
expect(getNextPageOffset(pageInfo)).toBe(1000); | ||
}); | ||
test('should return next page offset with multiple pages with gaps', () => { | ||
const pages = []; | ||
for (let i = 0; i < 10; i++) { | ||
pages.push(getRandomPage(i * 100, 100, false)); | ||
} | ||
pages.push(getRandomPage(11 * 100, 100, false)); | ||
const pageInfo: ICachedResourceOffsetPage = { | ||
pages, | ||
}; | ||
expect(getNextPageOffset(pageInfo)).toBe(1000); | ||
}); | ||
test('should return next page offset with end', () => { | ||
const pages = []; | ||
for (let i = 0; i < 10; i++) { | ||
pages.push(getRandomPage(i * 100, 100, false)); | ||
} | ||
pages.push(getRandomPage(10 * 100, 20, false)); | ||
const pageInfo: ICachedResourceOffsetPage = { | ||
end: 1020, | ||
pages, | ||
}; | ||
expect(getNextPageOffset(pageInfo)).toBe(1020); | ||
}); | ||
}); | ||
}); | ||
|
||
function getRandomPage(offset: number, limit: number, outdate: boolean): IResourceOffsetPage { | ||
const page = new ResourceOffsetPage(); | ||
|
||
page.setSize(offset, offset + limit); | ||
page.setOutdated(outdate); | ||
page.update( | ||
0, | ||
new Array(limit).fill(null).map((_, i) => i), | ||
); | ||
|
||
return page; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.