mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-05 07:13:11 +00:00
* changing default pubsub topic to its static sharding version * keeping RFC's Waku Message test vectors * reverting change in changelog * setting pubsub topic when creating nwaku node * adding shardInfo to runMultipleNodes call * adding shardInfo to runMultipleNodes call in lightpush tests * add pubsub topics to nwaku.start * get rid of it.only that remained * fixing compliance tests * setting clusterId to 0 * removing unnecessary fix * adding shardInfo when creating nodes * fixing wait for remote peer tests * fixing peer exchange test * refactor * removing unnecessary variable * feat: create default shard info, update tests (#2085) * feat: create default shard info, update tests * add link * fix tests * remoe only * up tests * up test --------- Co-authored-by: Sasha <118575614+weboko@users.noreply.github.com>
80 lines
2.1 KiB
TypeScript
80 lines
2.1 KiB
TypeScript
/**
|
|
* Some constants for test purposes.
|
|
*
|
|
* @hidden
|
|
* @module
|
|
*/
|
|
|
|
import { PubsubTopic, ShardInfo, SingleShardInfo } from "@waku/interfaces";
|
|
|
|
export const NOISE_KEY_1 = new Uint8Array(
|
|
((): number[] => {
|
|
const b = [];
|
|
for (let i = 0; i < 32; i++) {
|
|
b.push(1);
|
|
}
|
|
return b;
|
|
})()
|
|
);
|
|
|
|
export const NOISE_KEY_2 = new Uint8Array(
|
|
((): number[] => {
|
|
const b = [];
|
|
for (let i = 0; i < 32; i++) {
|
|
b.push(2);
|
|
}
|
|
return b;
|
|
})()
|
|
);
|
|
|
|
export const NOISE_KEY_3 = new Uint8Array(
|
|
((): number[] => {
|
|
const b = [];
|
|
for (let i = 0; i < 32; i++) {
|
|
b.push(3);
|
|
}
|
|
return b;
|
|
})()
|
|
);
|
|
|
|
export const TEST_STRING = [
|
|
{ description: "short", value: "hi" },
|
|
{ description: "long", value: "A".repeat(10000) },
|
|
{ description: "numeric", value: "1234567890" },
|
|
{ description: "special chars", value: "!@#$%^&*()_+" },
|
|
{ description: "Chinese", value: "你好" },
|
|
{ description: "Arabic", value: "مرحبا" },
|
|
{ description: "Russian", value: "Привет" },
|
|
{ description: "SQL Injection", value: "'; DROP TABLE users; --" },
|
|
{ description: "Script", value: '<script>alert("hacked");</script>' },
|
|
{ description: "XML", value: "<element>Some content</element>" },
|
|
{ description: "Basic HTML tag", value: "<h1>Heading</h1>" },
|
|
{ description: "JSON", value: '{"user":"admin","password":"123456"}' },
|
|
{ description: "shell command", value: "`rm -rf /`" },
|
|
{ description: "escaped characters", value: "\\n\\t\\0" },
|
|
{ description: "unicode special characters", value: "\u202Ereverse" },
|
|
{ description: "emoji", value: "🤫 🤥 😶 😶🌫️ 😐 😑 😬 🫨 🫠 🙄 😯 😦 😧 😮" }
|
|
];
|
|
|
|
export const TEST_TIMESTAMPS = [
|
|
BigInt(Date.now()) * BigInt(1000000),
|
|
Date.now(),
|
|
1649153314,
|
|
1949153314000
|
|
];
|
|
|
|
export const MOCHA_HOOK_MAX_TIMEOUT = 50_000;
|
|
|
|
export const SEPOLIA_RPC_URL =
|
|
process.env.SEPOLIA_RPC_URL || "https://sepolia.gateway.tenderly.co";
|
|
|
|
export const DefaultTestPubsubTopic: PubsubTopic = "/waku/2/rs/0/0";
|
|
export const DefaultTestShardInfo: ShardInfo = {
|
|
clusterId: 0,
|
|
shards: [0]
|
|
};
|
|
export const DefaultTestSingleShardInfo: SingleShardInfo = {
|
|
clusterId: 0,
|
|
shard: 0
|
|
};
|