Compare commits
5 Commits
v0.1.14-de
...
v0.1.14-v0
Author | SHA1 | Date | |
---|---|---|---|
2b2e96c02d | |||
1c5c0ca70c | |||
bc3aace070 | |||
ae2fd07229 | |||
e0617b3fb8 |
@@ -20,7 +20,7 @@ jobs:
|
|||||||
- name: Install Rust
|
- name: Install Rust
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: stable
|
toolchain: 1.85.0
|
||||||
components: cargo
|
components: cargo
|
||||||
|
|
||||||
- name: Extract Version from Cargo.toml
|
- name: Extract Version from Cargo.toml
|
||||||
|
@@ -17,6 +17,8 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: 1.85.0
|
||||||
- run: cargo check
|
- run: cargo check
|
||||||
|
|
||||||
test:
|
test:
|
||||||
@@ -25,6 +27,8 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: 1.85.0
|
||||||
- run: cargo test
|
- run: cargo test
|
||||||
|
|
||||||
fmt:
|
fmt:
|
||||||
@@ -33,6 +37,8 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: 1.85.0
|
||||||
- run: rustup component add rustfmt
|
- run: rustup component add rustfmt
|
||||||
- run: cargo fmt --all -- --check
|
- run: cargo fmt --all -- --check
|
||||||
|
|
||||||
@@ -42,6 +48,8 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: 1.85.0
|
||||||
- run: rustup component add clippy
|
- run: rustup component add clippy
|
||||||
- run: cargo clippy -- -D warnings
|
- run: cargo clippy -- -D warnings
|
||||||
|
|
||||||
@@ -51,6 +59,8 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: 1.85.0
|
||||||
- run: cargo build
|
- run: cargo build
|
||||||
|
|
||||||
|
|
||||||
|
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1 +1,2 @@
|
|||||||
/target
|
/target
|
||||||
|
Cargo.lock
|
||||||
|
@@ -9,3 +9,4 @@ license = "MIT"
|
|||||||
serde = { version = "1.0.218", features = ["derive"] }
|
serde = { version = "1.0.218", features = ["derive"] }
|
||||||
serde_json = { version = "1.0.139" }
|
serde_json = { version = "1.0.139" }
|
||||||
rand = { version = "0.9" }
|
rand = { version = "0.9" }
|
||||||
|
tempfile = { version = "3.19.1" }
|
||||||
|
18
src/album.rs
18
src/album.rs
@@ -1,15 +1,29 @@
|
|||||||
pub mod collection {
|
pub mod collection {
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
use std::default::Default;
|
||||||
|
|
||||||
|
use std::fs::File;
|
||||||
|
use std::io::BufReader;
|
||||||
|
|
||||||
fn is_set(num: &i32) -> bool {
|
fn is_set(num: &i32) -> bool {
|
||||||
*num >= 0
|
*num >= 0
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug, Deserialize, Serialize)]
|
pub fn parse_album(filepath: &String) -> Result<Album, serde_json::Error> {
|
||||||
|
let file = File::open(filepath).expect("Failed to open file");
|
||||||
|
let reader = BufReader::new(file);
|
||||||
|
|
||||||
|
serde_json::from_reader(reader)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
||||||
pub struct Album {
|
pub struct Album {
|
||||||
#[serde(skip_serializing_if = "String::is_empty")]
|
#[serde(skip_serializing_if = "String::is_empty")]
|
||||||
#[serde(alias = "album")]
|
#[serde(alias = "album")]
|
||||||
pub title: String,
|
pub title: String,
|
||||||
|
#[serde(skip_serializing_if = "String::is_empty")]
|
||||||
|
#[serde(alias = "album_artist")]
|
||||||
|
pub artist: String,
|
||||||
pub genre: String,
|
pub genre: String,
|
||||||
pub year: i32,
|
pub year: i32,
|
||||||
pub track_count: i32,
|
pub track_count: i32,
|
||||||
@@ -19,7 +33,7 @@ pub mod collection {
|
|||||||
pub tracks: Vec<Track>,
|
pub tracks: Vec<Track>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug, Deserialize, Serialize)]
|
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
||||||
pub struct Track {
|
pub struct Track {
|
||||||
pub title: String,
|
pub title: String,
|
||||||
pub artist: String,
|
pub artist: String,
|
||||||
|
15
src/lib.rs
15
src/lib.rs
@@ -7,18 +7,3 @@ pub mod song;
|
|||||||
pub mod token;
|
pub mod token;
|
||||||
pub mod types;
|
pub mod types;
|
||||||
pub mod user;
|
pub mod user;
|
||||||
|
|
||||||
pub fn add(left: u64, right: u64) -> u64 {
|
|
||||||
left + right
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(test)]
|
|
||||||
mod tests {
|
|
||||||
use super::*;
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn it_works() {
|
|
||||||
let result = add(2, 2);
|
|
||||||
assert_eq!(result, 4);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
34
src/song.rs
34
src/song.rs
@@ -1,4 +1,3 @@
|
|||||||
// use std::default::Default;
|
|
||||||
use std::io::Read;
|
use std::io::Read;
|
||||||
|
|
||||||
use crate::constants;
|
use crate::constants;
|
||||||
@@ -7,7 +6,7 @@ use crate::types;
|
|||||||
use rand::Rng;
|
use rand::Rng;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
#[derive(Clone, Debug, Deserialize, Serialize)]
|
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
||||||
pub struct Song {
|
pub struct Song {
|
||||||
#[serde(skip_serializing_if = "is_zero")]
|
#[serde(skip_serializing_if = "is_zero")]
|
||||||
#[serde(alias = "id")]
|
#[serde(alias = "id")]
|
||||||
@@ -64,37 +63,6 @@ fn is_dur_not_set(num: &i32) -> bool {
|
|||||||
*num == 0
|
*num == 0
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
impl Default for Song {
|
|
||||||
fn default() -> Self {
|
|
||||||
Song {
|
|
||||||
id: 0,
|
|
||||||
title: String::new(),
|
|
||||||
artist: String::new(),
|
|
||||||
album: String::new(),
|
|
||||||
album_artist: String::new(),
|
|
||||||
genre: String::new(),
|
|
||||||
year: 0,
|
|
||||||
duration: 0,
|
|
||||||
track: 0,
|
|
||||||
disc: 0,
|
|
||||||
disc_count: 0,
|
|
||||||
track_count: 0,
|
|
||||||
audio_type: String::new(),
|
|
||||||
date_created: String::new(),
|
|
||||||
filename: String::new(),
|
|
||||||
user_id: 0,
|
|
||||||
data: Vec::new(),
|
|
||||||
directory: String::new(),
|
|
||||||
// album_id: 0,
|
|
||||||
// artist_id: 0,
|
|
||||||
// genre_id: 0,
|
|
||||||
// coverart_id: 0,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
impl Song {
|
impl Song {
|
||||||
pub fn to_metadata_json(&self, pretty: bool) -> Result<String, serde_json::Error> {
|
pub fn to_metadata_json(&self, pretty: bool) -> Result<String, serde_json::Error> {
|
||||||
if pretty {
|
if pretty {
|
||||||
|
31
tests/album.json
Normal file
31
tests/album.json
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
{
|
||||||
|
"album": "Sample Tracks! Yes",
|
||||||
|
"album_artist": "KD",
|
||||||
|
"genre": "Country",
|
||||||
|
"year": 2025,
|
||||||
|
"track_count": 3,
|
||||||
|
"disc_count": 1,
|
||||||
|
"tracks": [
|
||||||
|
{
|
||||||
|
"title": "E less",
|
||||||
|
"artist": "KD",
|
||||||
|
"disc": 1,
|
||||||
|
"track": 1,
|
||||||
|
"duration": 31
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Aaaaaye",
|
||||||
|
"artist": "KD",
|
||||||
|
"disc": 1,
|
||||||
|
"track": 2,
|
||||||
|
"duration": 33
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "Check D out",
|
||||||
|
"artist": "KD",
|
||||||
|
"disc": 1,
|
||||||
|
"track": 3,
|
||||||
|
"duration": 22
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
179
tests/tests.rs
Normal file
179
tests/tests.rs
Normal file
@@ -0,0 +1,179 @@
|
|||||||
|
mod utils {
|
||||||
|
use std::fs;
|
||||||
|
use std::io::Read;
|
||||||
|
use std::path::Path;
|
||||||
|
|
||||||
|
pub fn get_tests_directory() -> String {
|
||||||
|
String::from(env!("CARGO_MANIFEST_DIR").to_owned() + "/tests/")
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn does_directory_exists(directory: &String) -> bool {
|
||||||
|
let path = Path::new(directory);
|
||||||
|
if let Ok(dir_i) = fs::metadata(path) {
|
||||||
|
dir_i.is_dir()
|
||||||
|
} else {
|
||||||
|
false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn extract_data_from_file(filepath: &String) -> Result<Vec<u8>, std::io::Error> {
|
||||||
|
match std::fs::File::open(filepath) {
|
||||||
|
Ok(mut file) => {
|
||||||
|
let mut buffer: Vec<u8> = Vec::new();
|
||||||
|
let _ = file.read_to_end(&mut buffer);
|
||||||
|
Ok(buffer)
|
||||||
|
}
|
||||||
|
Err(err) => Err(err),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
mod song_tests {
|
||||||
|
use std::fs::File;
|
||||||
|
use std::io::Write;
|
||||||
|
|
||||||
|
use tempfile::tempdir;
|
||||||
|
|
||||||
|
use icarus_models::song;
|
||||||
|
use icarus_models::types;
|
||||||
|
|
||||||
|
use crate::utils;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_song_to_data() {
|
||||||
|
println!("Test");
|
||||||
|
let some_val = true;
|
||||||
|
|
||||||
|
println!("Checking if some_val is true");
|
||||||
|
assert_eq!(true, some_val);
|
||||||
|
|
||||||
|
println!("Getting track");
|
||||||
|
let mut song = song::Song::default();
|
||||||
|
song.directory = utils::get_tests_directory();
|
||||||
|
song.filename = String::from("track01.flac");
|
||||||
|
|
||||||
|
assert!(
|
||||||
|
utils::does_directory_exists(&song.directory),
|
||||||
|
"Directory does not exist"
|
||||||
|
);
|
||||||
|
|
||||||
|
println!("Directory: {}", song.directory);
|
||||||
|
|
||||||
|
match song.song_path() {
|
||||||
|
Ok(filepath) => match utils::extract_data_from_file(&filepath) {
|
||||||
|
Ok(buffer) => {
|
||||||
|
assert_eq!(buffer.is_empty(), false);
|
||||||
|
|
||||||
|
match song.to_data() {
|
||||||
|
Ok(song_data) => {
|
||||||
|
println!("Both files match");
|
||||||
|
assert_eq!(buffer, song_data);
|
||||||
|
}
|
||||||
|
Err(err) => {
|
||||||
|
assert!(false, "Error producing song data: {:?}", err);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
Err(err) => {
|
||||||
|
assert!(false, "Failed to open file: {:?}", err);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
Err(err) => {
|
||||||
|
assert!(false, "Could not get song path: {:?}", err);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_song_path_check() {
|
||||||
|
let mut song = song::Song::default();
|
||||||
|
song.directory = utils::get_tests_directory();
|
||||||
|
song.filename = String::from("track01.flac");
|
||||||
|
|
||||||
|
assert!(
|
||||||
|
utils::does_directory_exists(&song.directory),
|
||||||
|
"Directory does not exist"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_song_generate_filename() {
|
||||||
|
let mut song = song::Song::default();
|
||||||
|
song.directory = utils::get_tests_directory();
|
||||||
|
song.filename = String::from("track01.flac");
|
||||||
|
|
||||||
|
match song.song_path() {
|
||||||
|
Ok(songpath) => match utils::extract_data_from_file(&songpath) {
|
||||||
|
Ok(buffer) => {
|
||||||
|
let mut song_cpy = song.clone();
|
||||||
|
let temp_dir = tempdir().expect("Failed to create temp dir");
|
||||||
|
song_cpy.directory = match temp_dir.path().to_str() {
|
||||||
|
Some(s) => String::from(s),
|
||||||
|
None => String::new(),
|
||||||
|
};
|
||||||
|
|
||||||
|
assert_eq!(song.directory.is_empty(), false);
|
||||||
|
song_cpy.filename =
|
||||||
|
song.generate_filename(types::MusicTypes::FlacExtension, true);
|
||||||
|
println!("Directory: {:?}", song_cpy.directory);
|
||||||
|
println!("File to be created: {:?}", song_cpy.filename);
|
||||||
|
|
||||||
|
let path = match song_cpy.song_path() {
|
||||||
|
Ok(s_path) => s_path,
|
||||||
|
Err(err) => {
|
||||||
|
assert!(false, "Error: {:?}", err);
|
||||||
|
String::new()
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
match File::create(path) {
|
||||||
|
Ok(mut file_cpy) => match file_cpy.write_all(&buffer) {
|
||||||
|
Ok(success) => {
|
||||||
|
println!("Success: {:?}", success);
|
||||||
|
}
|
||||||
|
Err(err) => {
|
||||||
|
assert!(false, "Error saving file: {:?}", err);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
Err(err) => {
|
||||||
|
assert!(false, "Error: {:?}", err);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
Err(err) => {
|
||||||
|
assert!(false, "Error: {:?}", err);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
Err(err) => {
|
||||||
|
assert!(false, "Error extracting song data: {:?}", err);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
mod album_tests {
|
||||||
|
|
||||||
|
use crate::utils;
|
||||||
|
use icarus_models::album;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn parse_album() {
|
||||||
|
let test_dir = utils::get_tests_directory();
|
||||||
|
if utils::does_directory_exists(&test_dir) {
|
||||||
|
let album_file: String = test_dir + &String::from("album.json");
|
||||||
|
println!("Album file: {:?}", album_file);
|
||||||
|
|
||||||
|
match album::collection::parse_album(&album_file) {
|
||||||
|
Ok(album) => {
|
||||||
|
println!("Album title: {}", album.title);
|
||||||
|
assert_eq!(album.title.is_empty(), false);
|
||||||
|
assert_eq!(album.artist.is_empty(), false);
|
||||||
|
assert_eq!(album.tracks.is_empty(), false);
|
||||||
|
}
|
||||||
|
Err(err) => {
|
||||||
|
assert!(false, "Error parsing album json file: {:?}", err);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
BIN
tests/track01.flac
Normal file
BIN
tests/track01.flac
Normal file
Binary file not shown.
BIN
tests/track02.flac
Normal file
BIN
tests/track02.flac
Normal file
Binary file not shown.
BIN
tests/track03.flac
Normal file
BIN
tests/track03.flac
Normal file
Binary file not shown.
Reference in New Issue
Block a user