mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-06 09:28:26 +08:00

* chore: Switch to Node 20 + Vitest * chore: migrate to vitest mock functions * chore: code style (switch to prettier) * test: re-enable long-running test Seems the switch to Node 20 and Vitest has vastly improved the code's and / or the test's runtime! see #1193 * chore: code style * chore: fix failing tests * Updated Documentation in README.md * Update contribution guidelines to state usage of Prettier * fix: set prettier printWidth back to 80 * chore: apply updated code style automatically * fix: set prettier line endings to lf again * chore: apply updated code style automatically --------- Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Co-authored-by: Lars Müller <34514239+appgurueu@users.noreply.github.com>
140 lines
4.3 KiB
JavaScript
140 lines
4.3 KiB
JavaScript
import { getNextElementaryGeneration } from '../Elementary'
|
|
|
|
describe('Elementary Cellular Automata', () => {
|
|
describe('Rule Errors', () => {
|
|
it('Correct', () => {
|
|
expect(() =>
|
|
getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], 128)
|
|
).not.toThrow()
|
|
})
|
|
|
|
it('Less than 0', () => {
|
|
expect(() =>
|
|
getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], -1)
|
|
).toThrow()
|
|
})
|
|
|
|
it('Greater than 255', () => {
|
|
expect(() =>
|
|
getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], 256)
|
|
).toThrow()
|
|
})
|
|
|
|
it('Decimal', () => {
|
|
expect(() =>
|
|
getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], 100.4)
|
|
).toThrow()
|
|
})
|
|
})
|
|
|
|
describe('Rule 54 Iterations', () => {
|
|
it('Generation 1', () => {
|
|
expect(
|
|
getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], 54)
|
|
).toEqual([0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0])
|
|
})
|
|
it('Generation 2', () => {
|
|
expect(
|
|
getNextElementaryGeneration([0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], 54)
|
|
).toEqual([0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0])
|
|
})
|
|
it('Generation 3', () => {
|
|
expect(
|
|
getNextElementaryGeneration([0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], 54)
|
|
).toEqual([0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0])
|
|
})
|
|
it('Generation 4', () => {
|
|
expect(
|
|
getNextElementaryGeneration([0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0], 54)
|
|
).toEqual([0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0])
|
|
})
|
|
})
|
|
|
|
describe('Rule 222 Iterations', () => {
|
|
it('Generation 1', () => {
|
|
expect(
|
|
getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], 222)
|
|
).toEqual([0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0])
|
|
})
|
|
it('Generation 2', () => {
|
|
expect(
|
|
getNextElementaryGeneration([0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], 222)
|
|
).toEqual([0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0])
|
|
})
|
|
it('Generation 3', () => {
|
|
expect(
|
|
getNextElementaryGeneration([0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0], 222)
|
|
).toEqual([0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0])
|
|
})
|
|
it('Generation 4', () => {
|
|
expect(
|
|
getNextElementaryGeneration([0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0], 222)
|
|
).toEqual([0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0])
|
|
})
|
|
})
|
|
|
|
describe('Rule 60 Iterations', () => {
|
|
it('Generation 1', () => {
|
|
expect(
|
|
getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], 60)
|
|
).toEqual([0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0])
|
|
})
|
|
it('Generation 2', () => {
|
|
expect(
|
|
getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], 60)
|
|
).toEqual([0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0])
|
|
})
|
|
it('Generation 3', () => {
|
|
expect(
|
|
getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], 60)
|
|
).toEqual([0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0])
|
|
})
|
|
it('Generation 4', () => {
|
|
expect(
|
|
getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], 60)
|
|
).toEqual([0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0])
|
|
})
|
|
})
|
|
|
|
describe('Rule 90 Iterations', () => {
|
|
it('Generation 1', () => {
|
|
expect(
|
|
getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], 90)
|
|
).toEqual([0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0])
|
|
})
|
|
it('Generation 2', () => {
|
|
expect(
|
|
getNextElementaryGeneration([0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], 90)
|
|
).toEqual([0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0])
|
|
})
|
|
it('Generation 3', () => {
|
|
expect(
|
|
getNextElementaryGeneration([0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], 90)
|
|
).toEqual([0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0])
|
|
})
|
|
it('Generation 4', () => {
|
|
expect(
|
|
getNextElementaryGeneration([0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0], 90)
|
|
).toEqual([0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0])
|
|
})
|
|
})
|
|
|
|
describe('Rule 30 Iterations', () => {
|
|
it('Generation 1', () => {
|
|
expect(
|
|
getNextElementaryGeneration([0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], 30)
|
|
).toEqual([0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0])
|
|
})
|
|
it('Generation 2', () => {
|
|
expect(
|
|
getNextElementaryGeneration([0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], 30)
|
|
).toEqual([0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0])
|
|
})
|
|
it('Generation 3', () => {
|
|
expect(
|
|
getNextElementaryGeneration([0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0], 30)
|
|
).toEqual([0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0])
|
|
})
|
|
})
|
|
})
|