mirror of
https://github.com/Permissionless-Software-Foundation/psf-memo-client.git
synced 2026-09-21 16:52:02 -07:00
- Add a small seeded property-testing harness (node:test based) - Property-test validation classification, character-counter conservation, setInput round-trip, and menu-link idempotence - Expose as explicit test:property command, separate from unit tests By refactorer.
113 lines
3.3 KiB
JavaScript
113 lines
3.3 KiB
JavaScript
/*
|
|
Property tests for the Memo post / New Post behavior slices.
|
|
|
|
These assert useful invariants that unit tests cover only at a few fixed
|
|
points:
|
|
- Validation classification is stable across a broad input range: any
|
|
non-blank string up to the length limit is accepted, any longer string is
|
|
rejected with a length error, and blank/non-string input is a validation
|
|
error.
|
|
- The New Post character counter conserves its relationship to input
|
|
length: input.length + remainingCount() === MAX_MEMO_CHARS for any string.
|
|
- setInput round-trips the exact draft text.
|
|
*/
|
|
|
|
'use strict'
|
|
|
|
const test = require('node:test')
|
|
|
|
const { seededRandom, forAll, makeStringGen } = require('./harness')
|
|
|
|
const MemoPost = require('../../src/services/memo-post')
|
|
const NewPostPage = require('../../src/services/new-post')
|
|
|
|
const MAX = MemoPost.MAX_MEMO_CHARS // 217
|
|
|
|
const rng = seededRandom(20260826)
|
|
const stringOf = makeStringGen(rng)
|
|
|
|
function buildPage () {
|
|
return new NewPostPage({
|
|
memoPost: new MemoPost({}),
|
|
navigate: () => {},
|
|
menuLinks: []
|
|
})
|
|
}
|
|
|
|
test('memo validation: any non-blank string at or below the limit is valid', async () => {
|
|
await forAll(
|
|
(i) => {
|
|
const len = 1 + Math.floor(rng() * MAX) // 1..MAX
|
|
return stringOf(len)
|
|
},
|
|
(msg) => {
|
|
// A random ASCII string may occasionally be all whitespace; whitespace-only
|
|
// input is a validation error, so only assert for non-blank strings.
|
|
if (msg.trim().length === 0) return true
|
|
const result = new MemoPost({}).validate(msg)
|
|
return result.ok === true
|
|
},
|
|
{ label: 'valid length' }
|
|
)
|
|
})
|
|
|
|
test('memo validation: any string above the limit is a length error', async () => {
|
|
await forAll(
|
|
(i) => stringOf(MAX + 1 + Math.floor(rng() * 100)), // > MAX
|
|
(msg) => {
|
|
const result = new MemoPost({}).validate(msg)
|
|
return result.ok === false && result.type === 'length'
|
|
},
|
|
{ label: 'over-long rejected as length' }
|
|
)
|
|
})
|
|
|
|
test('memo validation: blank and non-string input are validation errors', async () => {
|
|
await forAll(
|
|
(i) => (i % 2 === 0 ? ' ' : null),
|
|
(msg) => {
|
|
const result = new MemoPost({}).validate(msg)
|
|
return result.ok === false && result.type === 'validation'
|
|
},
|
|
{ label: 'blank/non-string rejected as validation' }
|
|
)
|
|
})
|
|
|
|
test('character counter conserves length: remaining === MAX - input.length', async () => {
|
|
await forAll(
|
|
(i) => stringOf(Math.floor(rng() * (MAX + 8))),
|
|
(msg) => {
|
|
const page = buildPage()
|
|
page.setInput(msg)
|
|
return page.remainingCount() === MAX - msg.length
|
|
},
|
|
{ label: 'counter conservation' }
|
|
)
|
|
})
|
|
|
|
test('setInput round-trips the draft text exactly', async () => {
|
|
await forAll(
|
|
(i) => stringOf(Math.floor(rng() * 50)),
|
|
(msg) => {
|
|
const page = buildPage()
|
|
page.setInput(msg)
|
|
return page.input === msg
|
|
},
|
|
{ label: 'setInput round-trip' }
|
|
)
|
|
})
|
|
|
|
test('menu link registration is idempotent', async () => {
|
|
await forAll(
|
|
(i) => `/posts/${i}`,
|
|
(path) => {
|
|
const page = buildPage()
|
|
page.addMenuLink(path)
|
|
page.addMenuLink(path)
|
|
page.addMenuLink(path)
|
|
return page.menuLinks.filter((p) => p === path).length === 1
|
|
},
|
|
{ label: 'menu link idempotence' }
|
|
)
|
|
})
|