1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-01 16:46:54 +03:00
Files
node-redis/packages/test-utils/lib/index.spec.ts
Bobby I. 69d507a572 refactor!: redis 8 compatibility improvements and test infrastructure updates (#2893)
* churn(test): use redislabs/client-libs-test for testing

This  switches our testing infrastructure from redis/redis-stack to
redislabs/client-libs-test Docker image across all packages. This change
also updates the default Docker version from 7.4.0-v1 to 8.0-M04-pre.

* churn(test): verify CONFIG SET / GET compatibility with Redis 8

- Add tests for Redis 8 search configuration settings
- Deprecate Redis Search CONFIG commands in favor of standard CONFIG
- Test read-only config restrictions for Redis 8

* churn(test): handle Redis 8 coordinate precision in GEOPOS

- Update GEOPOS tests to handle increased precision in Redis 8 (17 decimal places vs 14)
- Add precision-aware coordinate comparison helper
- Add comprehensive test suite for coordinate comparison function

* test(search): adapt SUGGET tests for Redis 8 empty results

- Update tests to expect empty array ([]) instead of null for SUGGET variants
- Affects sugGet, sugGetWithPayloads, sugGetWithScores, and sugGetWithScoresWithPayloads

* test(search): support Redis 8 INFO indexes_all field

- Add indexes_all field introduced in Redis 8 to index definition test

* refactor!(search): simplify PROFILE commands to return raw response

- BREAKING CHANGE: FT.PROFILE now returns raw response, letting users implement their own parsing

* test: improve version-specific test coverage

- Add `testWithClientIfVersionWithinRange` method to run tests for specific Redis versions
- Refactor TestUtils to handle version comparisons more accurately
- Update test utilities across Redis modules to run tests against multiple versions, and not against latest only
2025-02-27 10:56:58 +02:00

107 lines
3.6 KiB
TypeScript

import { strict as assert } from 'node:assert';
import TestUtils from './index';
describe('TestUtils', () => {
describe('parseVersionNumber', () => {
it('should handle special versions', () => {
assert.deepStrictEqual(TestUtils.parseVersionNumber('latest'), [Infinity]);
assert.deepStrictEqual(TestUtils.parseVersionNumber('edge'), [Infinity]);
});
it('should parse simple version numbers', () => {
assert.deepStrictEqual(TestUtils.parseVersionNumber('7.4.0'), [7, 4, 0]);
});
it('should handle versions with multiple dashes and prefixes', () => {
assert.deepStrictEqual(TestUtils.parseVersionNumber('rs-7.4.0-v2'), [7, 4, 0]);
assert.deepStrictEqual(TestUtils.parseVersionNumber('rs-7.4.0'), [7, 4, 0]);
assert.deepStrictEqual(TestUtils.parseVersionNumber('7.4.0-v2'), [7, 4, 0]);
});
it('should handle various version number formats', () => {
assert.deepStrictEqual(TestUtils.parseVersionNumber('10.5'), [10, 5]);
assert.deepStrictEqual(TestUtils.parseVersionNumber('8.0.0'), [8, 0, 0]);
assert.deepStrictEqual(TestUtils.parseVersionNumber('rs-6.2.4-v1'), [6, 2, 4]);
});
it('should throw TypeError for invalid version strings', () => {
['', 'invalid', 'rs-', 'v2', 'rs-invalid-v2'].forEach(version => {
assert.throws(
() => TestUtils.parseVersionNumber(version),
TypeError,
`Expected TypeError for version string: ${version}`
);
});
});
});
});
describe('Version Comparison', () => {
it('should correctly compare versions', () => {
const tests: [Array<number>, Array<number>, -1 | 0 | 1][] = [
[[1, 0, 0], [1, 0, 0], 0],
[[2, 0, 0], [1, 9, 9], 1],
[[1, 9, 9], [2, 0, 0], -1],
[[1, 2, 3], [1, 2], 1],
[[1, 2], [1, 2, 3], -1],
[[1, 2, 0], [1, 2, 1], -1],
[[1], [1, 0, 0], 0],
[[2], [1, 9, 9], 1],
];
tests.forEach(([a, b, expected]) => {
assert.equal(
TestUtils.compareVersions(a, b),
expected,
`Failed comparing ${a.join('.')} with ${b.join('.')}: expected ${expected}`
);
});
});
it('should correctly compare versions', () => {
const tests: [Array<number>, Array<number>, -1 | 0 | 1][] = [
[[1, 0, 0], [1, 0, 0], 0],
[[2, 0, 0], [1, 9, 9], 1],
[[1, 9, 9], [2, 0, 0], -1],
[[1, 2, 3], [1, 2], 1],
[[1, 2], [1, 2, 3], -1],
[[1, 2, 0], [1, 2, 1], -1],
[[1], [1, 0, 0], 0],
[[2], [1, 9, 9], 1],
];
tests.forEach(([a, b, expected]) => {
assert.equal(
TestUtils.compareVersions(a, b),
expected,
`Failed comparing ${a.join('.')} with ${b.join('.')}: expected ${expected}`
);
});
})
it('isVersionInRange should work correctly', () => {
const tests: [Array<number>, Array<number>, Array<number>, boolean][] = [
[[7, 0, 0], [7, 0, 0], [7, 0, 0], true],
[[7, 0, 1], [7, 0, 0], [7, 0, 2], true],
[[7, 0, 0], [7, 0, 1], [7, 0, 2], false],
[[7, 0, 3], [7, 0, 1], [7, 0, 2], false],
[[7], [6, 0, 0], [8, 0, 0], true],
[[7, 1, 1], [7, 1, 0], [7, 1, 2], true],
[[6, 0, 0], [7, 0, 0], [8, 0, 0], false],
[[9, 0, 0], [7, 0, 0], [8, 0, 0], false]
];
tests.forEach(([version, min, max, expected]) => {
const testUtils = new TestUtils({ string: version.join('.'), numbers: version }, "test")
assert.equal(
testUtils.isVersionInRange(min, max),
expected,
`Failed checking if ${version.join('.')} is between ${min.join('.')} and ${max.join('.')}: expected ${expected}`
);
});
})
});