2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-02-11 17:24:27 +01:00
|
|
|
const { test } = Deno;
|
2019-03-06 19:42:24 -05:00
|
|
|
import { assertEquals } from "../testing/asserts.ts";
|
2019-01-12 10:56:35 +08:00
|
|
|
import { Sha1 } from "./sha1.ts";
|
2019-01-07 04:26:18 +09:00
|
|
|
|
2020-04-27 20:49:34 +08:00
|
|
|
test("[util/sha] test1", () => {
|
2019-03-05 02:23:04 +03:00
|
|
|
const sha1 = new Sha1();
|
2019-01-07 04:26:18 +09:00
|
|
|
sha1.update("abcde");
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals(sha1.toString(), "03de6c570bfe24bfc328ccd7ca46b76eadaf4334");
|
2019-03-05 02:23:04 +03:00
|
|
|
});
|
2019-01-24 17:55:24 +02:00
|
|
|
|
2020-04-27 20:49:34 +08:00
|
|
|
test("[util/sha] testWithArray", () => {
|
2019-01-24 17:55:24 +02:00
|
|
|
const data = Uint8Array.of(0x61, 0x62, 0x63, 0x64, 0x65);
|
2019-03-05 02:23:04 +03:00
|
|
|
const sha1 = new Sha1();
|
2019-01-24 17:55:24 +02:00
|
|
|
sha1.update(data);
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals(sha1.toString(), "03de6c570bfe24bfc328ccd7ca46b76eadaf4334");
|
2019-03-05 02:23:04 +03:00
|
|
|
});
|
2019-01-24 17:55:24 +02:00
|
|
|
|
2020-04-27 20:49:34 +08:00
|
|
|
test("[util/sha] testSha1WithBuffer", () => {
|
2019-03-05 02:23:04 +03:00
|
|
|
const data = Uint8Array.of(0x61, 0x62, 0x63, 0x64, 0x65);
|
|
|
|
const sha1 = new Sha1();
|
2019-01-24 17:55:24 +02:00
|
|
|
sha1.update(data.buffer);
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals(sha1.toString(), "03de6c570bfe24bfc328ccd7ca46b76eadaf4334");
|
2019-01-07 04:26:18 +09:00
|
|
|
});
|