You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

142 lines
5.2 KiB

4 years ago
export const tests = []
const t = (f) => tests.push(f)
// empty dataset
t(({ eq }) => eq(neuron([]), {}))
t(({ eq }) =>
// simple dataset
4 years ago
eq(
neuron(['Orders: shutdown please! - Response: no!']).orders.shutdown_please,
{ order: 'shutdown please!', responses: ['no!'] }
)
4 years ago
)
t(({ eq }) =>
// multiple questions
4 years ago
eq(
neuron([
'Questions: what is life? - Response: The condition that distinguishes animals and plants from inorganic matter',
'Questions: what is life? - Response: Life is a characteristic that distinguishes physical entities that have biological processes',
]).questions.what_is_life,
{
question: 'what is life?',
responses: [
'The condition that distinguishes animals and plants from inorganic matter',
'Life is a characteristic that distinguishes physical entities that have biological processes',
],
}
)
4 years ago
)
t(({ eq, ctx }) =>
// multiple interactions
4 years ago
eq(
neuron([
'Questions: how are you? - Response: well thanks, and you?',
'affirmations: i am fine - Response: cool',
'affirmations: i am fine - Response: awesome',
'Orders: turn on the lights! - Response: done',
]),
ctx.multiInteractions
)
4 years ago
)
t(({ eq, ctx }) =>
// out of order
4 years ago
eq(
neuron([
'Questions: how are you? - Response: well thanks, and you?',
'affirmations: i am fine - Response: cool',
'Orders: turn on the lights! - Response: done',
'affirmations: i am fine - Response: awesome',
]),
ctx.multiInteractions
)
4 years ago
)
t(({ eq, ctx }) =>
// testing big dataset
eq(neuron(ctx.multipleTypes), ctx.multResult)
)
4 years ago
Object.freeze(tests)
export const setup = () => ({
multiInteractions: {
affirmations: {
i_am_fine: {
affirmation: 'i am fine',
responses: ['cool', 'awesome'],
},
},
orders: {
turn_on_the_lights: {
order: 'turn on the lights!',
responses: ['done'],
},
},
questions: {
how_are_you: {
question: 'how are you?',
responses: ['well thanks, and you?'],
},
},
},
multipleTypes: [
'Questions: How did Bob Marley die? - Response: Nesta Robert Bob Marley, OM was a Jamaican singer-songwriter and musician.',
'Questions: How did Bob Marley die? - Response: He was the rhythm guitarist and lead singer for the ska , rocksteady and reggae bands The Wailers and Bob Marley & The Wailers (1974–1981).',
'Questions: how did crater lake get its color? - Response: Crater Lake is a caldera lake located in the south-central region of the U.S. state of Oregon .',
'Questions: how did crater lake get its color? - Response: It is the main feature of Crater Lake National Park and famous for its deep blue color and water clarity .',
'Questions: how much is a ream of paper? - Response: Various measures of paper quantity have been and are in use.',
'Questions: how much is a ream of paper? - Response: Although there are no S.I. units such as quires and bales , there are ISO and DIN standards for the ream.',
'Questions: how much is a ream of paper? - Response: Expressions used here include U.S. Customary units.',
'Orders: shutdown! - Response: no!',
'Orders: shutdown! - Response: Yes Sr!',
'Orders: shutdown! - Response: goodbye!!',
'orders: Quote something! - Response: Make improvements, not excuses. Seek respect, not attention.',
'orders: Quote something! - Response: Life becomes easier and more beautiful when we can see the good in other people.',
'orders: Quote something! - Response: Pursue what catches your heart, not what catches your eyes.',
],
multResult: {
questions: {
how_did_bob_marley_die: {
question: 'How did Bob Marley die?',
responses: [
'Nesta Robert Bob Marley, OM was a Jamaican singer-songwriter and musician.',
'He was the rhythm guitarist and lead singer for the ska , rocksteady and reggae bands The Wailers and Bob Marley & The Wailers (1974–1981).',
],
},
how_did_crater_lake_get_its_color: {
question: 'how did crater lake get its color?',
responses: [
'Crater Lake is a caldera lake located in the south-central region of the U.S. state of Oregon .',
'It is the main feature of Crater Lake National Park and famous for its deep blue color and water clarity .',
],
},
how_much_is_a_ream_of_paper: {
question: 'how much is a ream of paper?',
responses: [
'Various measures of paper quantity have been and are in use.',
'Although there are no S.I. units such as quires and bales , there are ISO and DIN standards for the ream.',
'Expressions used here include U.S. Customary units.',
],
},
},
orders: {
shutdown: {
order: 'shutdown!',
responses: ['no!', 'Yes Sr!', 'goodbye!!'],
},
quote_something: {
order: 'Quote something!',
responses: [
'Make improvements, not excuses. Seek respect, not attention.',
'Life becomes easier and more beautiful when we can see the good in other people.',
'Pursue what catches your heart, not what catches your eyes.',
],
},
},
},
})