2023-01-03 19:55:46 +00:00
|
|
|
// Copyright 2021 Signal Messenger, LLC
|
2021-02-04 19:54:03 +00:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2022-01-19 19:19:08 +00:00
|
|
|
import { assert as chaiAssert } from 'chai';
|
2021-02-04 19:54:03 +00:00
|
|
|
|
2022-09-15 19:17:15 +00:00
|
|
|
import { assertDev, strictAssert } from '../../util/assert';
|
2021-02-04 19:54:03 +00:00
|
|
|
|
2021-06-22 14:46:42 +00:00
|
|
|
describe('assert utilities', () => {
|
|
|
|
describe('assert', () => {
|
|
|
|
it('does nothing if the assertion passes', () => {
|
2022-09-15 19:17:15 +00:00
|
|
|
assertDev(true, 'foo bar');
|
2021-06-22 14:46:42 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("throws if the assertion fails, because we're in a test environment", () => {
|
2022-01-19 19:19:08 +00:00
|
|
|
chaiAssert.throws(() => {
|
2022-09-15 19:17:15 +00:00
|
|
|
assertDev(false, 'foo bar');
|
2021-06-22 14:46:42 +00:00
|
|
|
}, 'foo bar');
|
|
|
|
});
|
2021-02-04 19:54:03 +00:00
|
|
|
});
|
|
|
|
|
2021-06-22 14:46:42 +00:00
|
|
|
describe('strictAssert', () => {
|
|
|
|
it('does nothing if the assertion passes', () => {
|
|
|
|
strictAssert(true, 'foo bar');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('throws if the assertion fails', () => {
|
2022-01-19 19:19:08 +00:00
|
|
|
chaiAssert.throws(() => {
|
2021-06-22 14:46:42 +00:00
|
|
|
strictAssert(false, 'foo bar');
|
|
|
|
}, 'foo bar');
|
|
|
|
});
|
2021-02-04 19:54:03 +00:00
|
|
|
});
|
|
|
|
});
|