Fix unit tests
This commit is contained in:
parent
e2dd53845f
commit
11bcb8bdb9
@ -180,13 +180,18 @@ mod tests {
|
|||||||
Terminal::new(backend).unwrap()
|
Terminal::new(backend).unwrap()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn ui(collection: Collection) -> Ui<MockIMusicHoard> {
|
pub fn music_hoard(collection: Collection) -> MockIMusicHoard {
|
||||||
let mut music_hoard = MockIMusicHoard::new();
|
let mut music_hoard = MockIMusicHoard::new();
|
||||||
|
|
||||||
|
music_hoard.expect_load_from_database().returning(|| Ok(()));
|
||||||
music_hoard.expect_rescan_library().returning(|| Ok(()));
|
music_hoard.expect_rescan_library().returning(|| Ok(()));
|
||||||
music_hoard.expect_get_collection().return_const(collection);
|
music_hoard.expect_get_collection().return_const(collection);
|
||||||
|
|
||||||
Ui::new(music_hoard).unwrap()
|
music_hoard
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn ui(collection: Collection) -> Ui<MockIMusicHoard> {
|
||||||
|
Ui::new(music_hoard(collection)).unwrap()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn listener() -> MockIEventListener {
|
fn listener() -> MockIEventListener {
|
||||||
|
@ -632,6 +632,22 @@ mod tests {
|
|||||||
|
|
||||||
use super::*;
|
use super::*;
|
||||||
|
|
||||||
|
pub fn music_hoard(collection: Collection) -> MockIMusicHoard {
|
||||||
|
let mut music_hoard = MockIMusicHoard::new();
|
||||||
|
|
||||||
|
music_hoard
|
||||||
|
.expect_load_from_database()
|
||||||
|
.times(1)
|
||||||
|
.return_once(|| Ok(()));
|
||||||
|
music_hoard
|
||||||
|
.expect_rescan_library()
|
||||||
|
.times(1)
|
||||||
|
.return_once(|| Ok(()));
|
||||||
|
music_hoard.expect_get_collection().return_const(collection);
|
||||||
|
|
||||||
|
music_hoard
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_track_selection() {
|
fn test_track_selection() {
|
||||||
let tracks = &COLLECTION[0].albums[0].tracks;
|
let tracks = &COLLECTION[0].albums[0].tracks;
|
||||||
@ -786,17 +802,7 @@ mod tests {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn ui_running() {
|
fn ui_running() {
|
||||||
let mut music_hoard = MockIMusicHoard::new();
|
let mut ui = Ui::new(music_hoard(COLLECTION.to_owned())).unwrap();
|
||||||
|
|
||||||
music_hoard
|
|
||||||
.expect_rescan_library()
|
|
||||||
.times(1)
|
|
||||||
.return_once(|| Ok(()));
|
|
||||||
music_hoard
|
|
||||||
.expect_get_collection()
|
|
||||||
.return_const(COLLECTION.to_owned());
|
|
||||||
|
|
||||||
let mut ui = Ui::new(music_hoard).unwrap();
|
|
||||||
assert!(ui.is_running());
|
assert!(ui.is_running());
|
||||||
|
|
||||||
ui.quit();
|
ui.quit();
|
||||||
@ -805,17 +811,7 @@ mod tests {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn ui_modifiers() {
|
fn ui_modifiers() {
|
||||||
let mut music_hoard = MockIMusicHoard::new();
|
let mut ui = Ui::new(music_hoard(COLLECTION.to_owned())).unwrap();
|
||||||
|
|
||||||
music_hoard
|
|
||||||
.expect_rescan_library()
|
|
||||||
.times(1)
|
|
||||||
.return_once(|| Ok(()));
|
|
||||||
music_hoard
|
|
||||||
.expect_get_collection()
|
|
||||||
.return_const(COLLECTION.to_owned());
|
|
||||||
|
|
||||||
let mut ui = Ui::new(music_hoard).unwrap();
|
|
||||||
assert!(ui.is_running());
|
assert!(ui.is_running());
|
||||||
|
|
||||||
assert_eq!(ui.selection.active, Category::Artist);
|
assert_eq!(ui.selection.active, Category::Artist);
|
||||||
@ -904,17 +900,10 @@ mod tests {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn app_no_tracks() {
|
fn app_no_tracks() {
|
||||||
let mut music_hoard = MockIMusicHoard::new();
|
|
||||||
let mut collection = COLLECTION.to_owned();
|
let mut collection = COLLECTION.to_owned();
|
||||||
collection[0].albums[0].tracks = vec![];
|
collection[0].albums[0].tracks = vec![];
|
||||||
|
|
||||||
music_hoard
|
let mut app = Ui::new(music_hoard(collection)).unwrap();
|
||||||
.expect_rescan_library()
|
|
||||||
.times(1)
|
|
||||||
.return_once(|| Ok(()));
|
|
||||||
music_hoard.expect_get_collection().return_const(collection);
|
|
||||||
|
|
||||||
let mut app = Ui::new(music_hoard).unwrap();
|
|
||||||
assert!(app.is_running());
|
assert!(app.is_running());
|
||||||
|
|
||||||
assert_eq!(app.selection.active, Category::Artist);
|
assert_eq!(app.selection.active, Category::Artist);
|
||||||
@ -940,17 +929,10 @@ mod tests {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn app_no_albums() {
|
fn app_no_albums() {
|
||||||
let mut music_hoard = MockIMusicHoard::new();
|
|
||||||
let mut collection = COLLECTION.to_owned();
|
let mut collection = COLLECTION.to_owned();
|
||||||
collection[0].albums = vec![];
|
collection[0].albums = vec![];
|
||||||
|
|
||||||
music_hoard
|
let mut app = Ui::new(music_hoard(collection)).unwrap();
|
||||||
.expect_rescan_library()
|
|
||||||
.times(1)
|
|
||||||
.return_once(|| Ok(()));
|
|
||||||
music_hoard.expect_get_collection().return_const(collection);
|
|
||||||
|
|
||||||
let mut app = Ui::new(music_hoard).unwrap();
|
|
||||||
assert!(app.is_running());
|
assert!(app.is_running());
|
||||||
|
|
||||||
assert_eq!(app.selection.active, Category::Artist);
|
assert_eq!(app.selection.active, Category::Artist);
|
||||||
@ -989,16 +971,7 @@ mod tests {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn app_no_artists() {
|
fn app_no_artists() {
|
||||||
let mut music_hoard = MockIMusicHoard::new();
|
let mut app = Ui::new(music_hoard(vec![])).unwrap();
|
||||||
let collection = vec![];
|
|
||||||
|
|
||||||
music_hoard
|
|
||||||
.expect_rescan_library()
|
|
||||||
.times(1)
|
|
||||||
.return_once(|| Ok(()));
|
|
||||||
music_hoard.expect_get_collection().return_const(collection);
|
|
||||||
|
|
||||||
let mut app = Ui::new(music_hoard).unwrap();
|
|
||||||
assert!(app.is_running());
|
assert!(app.is_running());
|
||||||
|
|
||||||
assert_eq!(app.selection.active, Category::Artist);
|
assert_eq!(app.selection.active, Category::Artist);
|
||||||
|
Loading…
Reference in New Issue
Block a user