send sim messages to the proper rooms
This commit is contained in:
parent
7526d63690
commit
da6603d258
10 changed files with 38 additions and 10 deletions
|
@ -44,6 +44,7 @@ function* generateLocalpartAlternatives(preferences) {
|
|||
|
||||
/**
|
||||
* Whole process for checking the database and generating the right sim name.
|
||||
* It is very important this is not an async function: once the name has been chosen, the calling function should be able to immediately claim that name into the database in the same event loop tick.
|
||||
* @param {import("discord-api-types/v10").APIUser} user
|
||||
* @returns {string}
|
||||
*/
|
||||
|
|
|
@ -31,3 +31,7 @@ test("user2name: adds number suffix if name is unavailable (new username format)
|
|||
test("user2name: uses ID if name becomes too short", t => {
|
||||
t.equal(userToSimName({username: "f***", discriminator: "0001", id: "9"}), "9")
|
||||
})
|
||||
|
||||
test("user2name: uses ID when name has only disallowed characters", t => {
|
||||
t.equal(userToSimName({username: "!@#$%^&*", discriminator: "0001", id: "9"}), "9")
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue