Add word checking
This commit is contained in:
parent
37fe5bac56
commit
3c9a0db3cb
1 changed files with 7 additions and 3 deletions
10
src/lib.rs
10
src/lib.rs
|
@ -143,9 +143,8 @@ impl Dictionary for HashMap<String, f64> {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn is_word_valid(&self, word: &Word) -> bool {
|
fn is_word_valid(&self, word: &Word) -> bool {
|
||||||
|
let text = word.to_string();
|
||||||
|
self.contains_key(&text)
|
||||||
todo!()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -813,6 +812,7 @@ mod tests {
|
||||||
board.get_cell_mut(Coordinates(6, 0)).unwrap().value = Some(Letter::new_fixed('L', 1));
|
board.get_cell_mut(Coordinates(6, 0)).unwrap().value = Some(Letter::new_fixed('L', 1));
|
||||||
|
|
||||||
fn check_board(board: &mut Board, inverted: bool) {
|
fn check_board(board: &mut Board, inverted: bool) {
|
||||||
|
let dictionary = HashMap::create("resources/dictionary.csv");
|
||||||
println!("{}", board);
|
println!("{}", board);
|
||||||
let words = board.find_played_words();
|
let words = board.find_played_words();
|
||||||
match words {
|
match words {
|
||||||
|
@ -820,6 +820,7 @@ mod tests {
|
||||||
assert_eq!(x.len(), 1);
|
assert_eq!(x.len(), 1);
|
||||||
let word = x.get(0).unwrap();
|
let word = x.get(0).unwrap();
|
||||||
assert_eq!(word.to_string(), "JOEL");
|
assert_eq!(word.to_string(), "JOEL");
|
||||||
|
assert!(!dictionary.is_word_valid(word));
|
||||||
|
|
||||||
assert_eq!(word.calculate_score(), 8 + 1 + 2 + 1);
|
assert_eq!(word.calculate_score(), 8 + 1 + 2 + 1);
|
||||||
}
|
}
|
||||||
|
@ -852,6 +853,7 @@ mod tests {
|
||||||
|
|
||||||
assert_eq!(x.to_string(), "EGG");
|
assert_eq!(x.to_string(), "EGG");
|
||||||
assert_eq!(x.calculate_score(), 2 + 2 + 2);
|
assert_eq!(x.calculate_score(), 2 + 2 + 2);
|
||||||
|
assert!(dictionary.is_word_valid(&x));
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -863,10 +865,12 @@ mod tests {
|
||||||
let word = x.get(0).unwrap();
|
let word = x.get(0).unwrap();
|
||||||
assert_eq!(word.to_string(), "EGG");
|
assert_eq!(word.to_string(), "EGG");
|
||||||
assert_eq!(word.calculate_score(), 2 + 2 + 2);
|
assert_eq!(word.calculate_score(), 2 + 2 + 2);
|
||||||
|
assert!(dictionary.is_word_valid(word));
|
||||||
|
|
||||||
let word = x.get(1).unwrap();
|
let word = x.get(1).unwrap();
|
||||||
assert_eq!(word.to_string(), "JOEL");
|
assert_eq!(word.to_string(), "JOEL");
|
||||||
assert_eq!(word.calculate_score(), 8 + 1 + 2 + 1);
|
assert_eq!(word.calculate_score(), 8 + 1 + 2 + 1);
|
||||||
|
assert!(!dictionary.is_word_valid(word));
|
||||||
}
|
}
|
||||||
Err(e) => { panic!("Expected to find a word to play; found error {}", e) }
|
Err(e) => { panic!("Expected to find a word to play; found error {}", e) }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue