mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-09 21:30:47 -05:00
60 lines
1.7 KiB
Zig
60 lines
1.7 KiB
Zig
|
const std = @import("std");
|
||
|
const testing = std.testing;
|
||
|
|
||
|
const hamming = @import("hamming.zig");
|
||
|
const DnaError = hamming.DnaError;
|
||
|
|
||
|
test "empty strands" {
|
||
|
const expected = DnaError.EmptyDnaStrands;
|
||
|
const actual = hamming.compute("", "");
|
||
|
try testing.expectError(expected, actual);
|
||
|
}
|
||
|
|
||
|
test "single letter identical strands" {
|
||
|
const expected: usize = 0;
|
||
|
const actual = try hamming.compute("A", "A");
|
||
|
try testing.expectEqual(expected, actual);
|
||
|
}
|
||
|
|
||
|
test "single letter different strands" {
|
||
|
const expected: usize = 1;
|
||
|
const actual = try hamming.compute("G", "T");
|
||
|
try testing.expectEqual(expected, actual);
|
||
|
}
|
||
|
|
||
|
test "long identical strands" {
|
||
|
const expected: usize = 0;
|
||
|
const actual = try hamming.compute("GGACTGAAATCTG", "GGACTGAAATCTG");
|
||
|
try testing.expectEqual(expected, actual);
|
||
|
}
|
||
|
|
||
|
test "long different strands" {
|
||
|
const expected: usize = 9;
|
||
|
const actual = try hamming.compute("GGACGGATTCTG", "AGGACGGATTCT");
|
||
|
try testing.expectEqual(expected, actual);
|
||
|
}
|
||
|
|
||
|
test "disallow first strand longer" {
|
||
|
const expected = DnaError.UnequalDnaStrands;
|
||
|
const actual = hamming.compute("AATG", "AAA");
|
||
|
try testing.expectError(expected, actual);
|
||
|
}
|
||
|
|
||
|
test "disallow second strand longer" {
|
||
|
const expected = DnaError.UnequalDnaStrands;
|
||
|
const actual = hamming.compute("ATA", "AGTG");
|
||
|
try testing.expectError(expected, actual);
|
||
|
}
|
||
|
|
||
|
test "disallow left empty strand" {
|
||
|
const expected = DnaError.EmptyDnaStrands;
|
||
|
const actual = hamming.compute("", "G");
|
||
|
try testing.expectError(expected, actual);
|
||
|
}
|
||
|
|
||
|
test "disallow right empty strand" {
|
||
|
const expected = DnaError.EmptyDnaStrands;
|
||
|
const actual = hamming.compute("G", "");
|
||
|
try testing.expectError(expected, actual);
|
||
|
}
|