-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathSequenceMatcherTest.java
More file actions
192 lines (161 loc) · 5.94 KB
/
SequenceMatcherTest.java
File metadata and controls
192 lines (161 loc) · 5.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertThrows;
// import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import java.util.Arrays;
import java.util.List;
/**
* Tests for the SequenceMatcher class.
*
* @author Dr. Jody Paul
* @version 2026-03-10
*/
public class SequenceMatcherTest {
/**
* Verifies that the matcher returns the best match when higher scores are better.
*/
@Test
public void findBestMatch_ShouldReturnBestMatch_WhenHigherScoreIsBetter() {
List<DNASequence> database = Arrays.asList(
new DNASequence("Seq1", "ACGT"),
new DNASequence("Seq2", "ACGA"),
new DNASequence("Seq3", "TTTT")
);
SequenceMatcher matcher = new SequenceMatcher(new ExamplePositionMatchAlgorithm());
MatchResult result = matcher.findBestMatch("ACGA", database);
assertEquals("Exact Position Matches", result.getAlgorithmName());
assertEquals("Seq2", result.getBestSequence().getLabel());
assertEquals("ACGA", result.getBestSequence().getSequence());
assertEquals(4.0, result.getScore());
}
/**
* Verifies that the matcher returns the best match when lower scores are better.
*/
@Test
public void findBestMatch_ShouldReturnBestMatch_WhenLowerScoreIsBetter() {
List<DNASequence> database = Arrays.asList(
new DNASequence("Seq1", "ACGT"),
new DNASequence("Seq2", "ACGTA"),
new DNASequence("Seq3", "AC")
);
SequenceScoringAlgorithm algorithm = new SequenceScoringAlgorithm() {
/**
* Returns the display name of this algorithm.
*
* @return the algorithm name
*/
@Override
public String getName() {
return "Length Difference";
}
/**
* Computes the absolute difference in sequence lengths.
*
* @param databaseSequence a DNA sequence from the database
* @param querySequence the query DNA sequence
* @return the absolute difference in length
*/
@Override
public double score(String databaseSequence, String querySequence) {
return Math.abs(databaseSequence.length() - querySequence.length());
}
/**
* Indicates whether higher scores are better.
*
* @return false because smaller differences are better
*/
@Override
public boolean higherScoreIsBetter() {
return false;
}
};
SequenceMatcher matcher = new SequenceMatcher(algorithm);
MatchResult result = matcher.findBestMatch("ACGTA", database);
assertEquals("Length Difference", result.getAlgorithmName());
assertEquals("Seq2", result.getBestSequence().getLabel());
assertEquals(0.0, result.getScore());
}
/**
* Verifies that sequence normalization converts lowercase input to uppercase.
*/
@Test
public void normalizeAndValidate_ShouldConvertToUppercase() {
String normalized = DNASequence.normalizeAndValidate(" acgt ");
assertEquals("ACGT", normalized);
}
/**
* Verifies that invalid DNA characters are rejected.
*/
@Test
public void normalizeAndValidate_ShouldThrowForInvalidCharacter() {
assertThrows(IllegalArgumentException.class, () -> {
DNASequence.normalizeAndValidate("ACGX");
});
}
/**
* Verifies that an empty database causes an exception.
*/
@Test
public void findBestMatch_ShouldThrowForEmptyDatabase() {
SequenceMatcher matcher = new SequenceMatcher(new ExamplePositionMatchAlgorithm());
assertThrows(IllegalArgumentException.class, () -> {
matcher.findBestMatch("ACGT", List.of());
});
}
/**
* Verifies that an invalid query sequence causes an exception.
*/
@Test
public void findBestMatch_ShouldThrowForInvalidQuery() {
List<DNASequence> database = Arrays.asList(
new DNASequence("Seq1", "ACGT")
);
SequenceMatcher matcher = new SequenceMatcher(new ExamplePositionMatchAlgorithm());
assertThrows(IllegalArgumentException.class, () -> {
matcher.findBestMatch("ACGX", database);
});
}
/**
* Verifies that the example algorithm counts matching positions correctly.
*/
@Test
public void score_ShouldCountMatchingPositions() {
SequenceScoringAlgorithm algorithm = new ExamplePositionMatchAlgorithm();
double score = algorithm.score("ACGT", "ACGA");
assertEquals(3.0, score);
}
/**
* Verifies that the matcher constructor rejects a null algorithm.
*/
@Test
public void constructor_ShouldThrowForNullAlgorithm() {
assertThrows(NullPointerException.class, () -> {
new SequenceMatcher(null);
});
}
/**
* Verifies that findBestMatch rejects a null query sequence.
*/
@Test
public void findBestMatch_ShouldThrowForNullQuery() {
List<DNASequence> database = Arrays.asList(
new DNASequence("Seq1", "ACGT")
);
SequenceMatcher matcher = new SequenceMatcher(new ExamplePositionMatchAlgorithm());
assertThrows(NullPointerException.class, () -> {
matcher.findBestMatch(null, database);
});
}
/**
* Verifies that findBestMatch rejects a null database.
*/
@Test
public void findBestMatch_ShouldThrowForNullDatabase() {
SequenceMatcher matcher = new SequenceMatcher(new ExamplePositionMatchAlgorithm());
assertThrows(NullPointerException.class, () -> {
matcher.findBestMatch("ACGT", null);
});
}
}