Switch rest of the tests to point to the internet archive urls.
This commit is contained in:
parent
df85a4ea9e
commit
39aa86157b
@ -5,25 +5,30 @@
|
|||||||
#### Intercepted
|
#### Intercepted
|
||||||
|
|
||||||
Web view: https://web.archive.org/web/20180120083840/https://feeds.feedburner.com/InterceptedWithJeremyScahill
|
Web view: https://web.archive.org/web/20180120083840/https://feeds.feedburner.com/InterceptedWithJeremyScahill
|
||||||
|
|
||||||
Raw file: https://web.archive.org/web/20180120083840if_/https://feeds.feedburner.com/InterceptedWithJeremyScahill
|
Raw file: https://web.archive.org/web/20180120083840if_/https://feeds.feedburner.com/InterceptedWithJeremyScahill
|
||||||
|
|
||||||
#### The TipOff
|
#### The TipOff
|
||||||
|
|
||||||
Web view: https://web.archive.org/web/20180120110727/https://rss.acast.com/thetipoff
|
Web view: https://web.archive.org/web/20180120110727/https://rss.acast.com/thetipoff
|
||||||
|
|
||||||
Raw file: https://web.archive.org/web/20180120110727if_/https://rss.acast.com/thetipoff
|
Raw file: https://web.archive.org/web/20180120110727if_/https://rss.acast.com/thetipoff
|
||||||
|
|
||||||
#### Linux Unplugged
|
#### Linux Unplugged
|
||||||
|
|
||||||
Web view: https://web.archive.org/web/20180120110314/https://feeds.feedburner.com/linuxunplugged
|
Web view: https://web.archive.org/web/20180120110314/https://feeds.feedburner.com/linuxunplugged
|
||||||
|
|
||||||
Raw file: https://web.archive.org/web/20180120110314if_/https://feeds.feedburner.com/linuxunplugged
|
Raw file: https://web.archive.org/web/20180120110314if_/https://feeds.feedburner.com/linuxunplugged
|
||||||
|
|
||||||
#### Steal the stars
|
#### Steal the stars
|
||||||
|
|
||||||
Web view: https://web.archive.org/web/20180120104957/https://rss.art19.com/steal-the-stars
|
Web view: https://web.archive.org/web/20180120104957/https://rss.art19.com/steal-the-stars
|
||||||
|
|
||||||
Raw file: https://web.archive.org/web/20180120104957if_/https://rss.art19.com/steal-the-stars
|
Raw file: https://web.archive.org/web/20180120104957if_/https://rss.art19.com/steal-the-stars
|
||||||
|
|
||||||
#### Greater than Code
|
#### Greater than Code
|
||||||
|
|
||||||
Web view: https://web.archive.org/web/20180120104741/https://www.greaterthancode.com/feed/podcast
|
Web view: https://web.archive.org/web/20180120104741/https://www.greaterthancode.com/feed/podcast
|
||||||
|
|
||||||
Raw file: https://web.archive.org/web/20180120104741if_/https://www.greaterthancode.com/feed/podcast
|
Raw file: https://web.archive.org/web/20180120104741if_/https://www.greaterthancode.com/feed/podcast
|
||||||
|
|
||||||
|
|||||||
@ -225,7 +225,7 @@ mod tests {
|
|||||||
// to run it.
|
// to run it.
|
||||||
#[ignore]
|
#[ignore]
|
||||||
fn test_cache_image() {
|
fn test_cache_image() {
|
||||||
let url = "http://www.newrustacean.com/feed.xml";
|
let url = "https://web.archive.org/web/20180120110727if_/https://rss.acast.com/thetipoff";
|
||||||
// Create and index a source
|
// Create and index a source
|
||||||
let source = Source::from_url(url).unwrap();
|
let source = Source::from_url(url).unwrap();
|
||||||
// Copy it's id
|
// Copy it's id
|
||||||
@ -238,7 +238,7 @@ mod tests {
|
|||||||
|
|
||||||
let img_path = cache_image(&pd);
|
let img_path = cache_image(&pd);
|
||||||
let foo_ = format!(
|
let foo_ = format!(
|
||||||
"{}{}/cover.png",
|
"{}{}/cover.jpeg",
|
||||||
HAMMOND_CACHE.to_str().unwrap(),
|
HAMMOND_CACHE.to_str().unwrap(),
|
||||||
pd.title()
|
pd.title()
|
||||||
);
|
);
|
||||||
|
|||||||
@ -133,7 +133,7 @@ mod tests {
|
|||||||
// THIS IS NOT A RELIABLE TEST
|
// THIS IS NOT A RELIABLE TEST
|
||||||
// Just quick sanity check
|
// Just quick sanity check
|
||||||
fn test_start_dl() {
|
fn test_start_dl() {
|
||||||
let url = "http://www.newrustacean.com/feed.xml";
|
let url = "https://web.archive.org/web/20180120110727if_/https://rss.acast.com/thetipoff";
|
||||||
// Create and index a source
|
// Create and index a source
|
||||||
let source = Source::from_url(url).unwrap();
|
let source = Source::from_url(url).unwrap();
|
||||||
// Copy it's id
|
// Copy it's id
|
||||||
@ -142,9 +142,9 @@ mod tests {
|
|||||||
|
|
||||||
// Get the Podcast
|
// Get the Podcast
|
||||||
let pd = dbqueries::get_podcast_from_source_id(sid).unwrap();
|
let pd = dbqueries::get_podcast_from_source_id(sid).unwrap();
|
||||||
|
let title = "Coming soon... The Tip Off";
|
||||||
// Get an episode
|
// Get an episode
|
||||||
let episode: Episode =
|
let episode: Episode = dbqueries::get_episode_from_pk(title, pd.id()).unwrap();
|
||||||
dbqueries::get_episode_from_pk("e000: Hello, world!", pd.id()).unwrap();
|
|
||||||
|
|
||||||
let (sender, _rx) = channel();
|
let (sender, _rx) = channel();
|
||||||
|
|
||||||
@ -153,9 +153,9 @@ mod tests {
|
|||||||
assert_eq!(ACTIVE_DOWNLOADS.read().unwrap().len(), 1);
|
assert_eq!(ACTIVE_DOWNLOADS.read().unwrap().len(), 1);
|
||||||
|
|
||||||
// Give it soem time to download the file
|
// Give it soem time to download the file
|
||||||
thread::sleep(time::Duration::from_secs(40));
|
thread::sleep(time::Duration::from_secs(20));
|
||||||
|
|
||||||
let final_path = format!("{}/{}.unknown", &download_fold, episode.rowid());
|
let final_path = format!("{}/{}.mp3", &download_fold, episode.rowid());
|
||||||
println!("{}", &final_path);
|
println!("{}", &final_path);
|
||||||
assert!(Path::new(&final_path).exists());
|
assert!(Path::new(&final_path).exists());
|
||||||
}
|
}
|
||||||
|
|||||||
@ -89,7 +89,7 @@ mod tests {
|
|||||||
// to run it.
|
// to run it.
|
||||||
#[ignore]
|
#[ignore]
|
||||||
fn test_get_pixbuf_from_path() {
|
fn test_get_pixbuf_from_path() {
|
||||||
let url = "http://www.newrustacean.com/feed.xml";
|
let url = "https://web.archive.org/web/20180120110727if_/https://rss.acast.com/thetipoff";
|
||||||
// Create and index a source
|
// Create and index a source
|
||||||
let source = Source::from_url(url).unwrap();
|
let source = Source::from_url(url).unwrap();
|
||||||
// Copy it's id
|
// Copy it's id
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user