2010-05-22 23:11:22 +02:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-05-22 23:11:22 +02:00
|
|
|
|
|
|
|
Clementine is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Clementine is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2014-02-06 18:24:46 +01:00
|
|
|
#include <memory>
|
|
|
|
|
2010-05-22 23:11:22 +02:00
|
|
|
#include "test_utils.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
2011-11-28 14:51:35 +01:00
|
|
|
#include "core/timeconstants.h"
|
2010-05-22 23:11:22 +02:00
|
|
|
#include "playlistparsers/plsparser.h"
|
|
|
|
|
|
|
|
#include <QBuffer>
|
|
|
|
#include <QFile>
|
2010-05-22 23:27:51 +02:00
|
|
|
#include <QTemporaryFile>
|
2011-11-28 14:51:35 +01:00
|
|
|
#include <QUrl>
|
2010-05-22 23:27:51 +02:00
|
|
|
#include <QtDebug>
|
2010-05-22 23:11:22 +02:00
|
|
|
|
2014-02-06 18:24:46 +01:00
|
|
|
using std::shared_ptr;
|
2010-05-22 23:11:22 +02:00
|
|
|
|
|
|
|
class PLSParserTest : public ::testing::Test {
|
|
|
|
protected:
|
2014-02-21 17:24:49 +01:00
|
|
|
PLSParserTest() : parser_(nullptr) {}
|
2010-12-11 12:07:00 +01:00
|
|
|
|
2010-05-22 23:11:22 +02:00
|
|
|
shared_ptr<QFile> Open(const QString& filename) {
|
|
|
|
shared_ptr<QFile> ret(new QFile(":/testdata/" + filename));
|
|
|
|
if (!ret->open(QIODevice::ReadOnly))
|
|
|
|
ret.reset();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
PLSParser parser_;
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST_F(PLSParserTest, ParseOneTrack) {
|
|
|
|
shared_ptr<QFile> file(Open("pls_one.pls"));
|
|
|
|
|
2011-01-12 00:09:59 +01:00
|
|
|
SongList songs = parser_.Load(file.get(), "", QDir("/relative/to/"));
|
2010-05-22 23:11:22 +02:00
|
|
|
ASSERT_EQ(1, songs.length());
|
2011-04-28 14:27:53 +02:00
|
|
|
EXPECT_EQ(QUrl("file:///relative/to/filename with spaces.mp3"), songs[0].url());
|
2010-05-22 23:11:22 +02:00
|
|
|
EXPECT_EQ("Title", songs[0].title());
|
2011-02-14 20:34:37 +01:00
|
|
|
EXPECT_EQ(123 * kNsecPerSec, songs[0].length_nanosec());
|
2010-05-22 23:11:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(PLSParserTest, ParseSomaFM) {
|
|
|
|
shared_ptr<QFile> file(Open("pls_somafm.pls"));
|
|
|
|
|
|
|
|
SongList songs = parser_.Load(file.get());
|
|
|
|
ASSERT_EQ(4, songs.length());
|
2011-04-28 14:27:53 +02:00
|
|
|
EXPECT_EQ(QUrl("http://streamer-dtc-aa05.somafm.com:80/stream/1018"), songs[0].url());
|
|
|
|
EXPECT_EQ(QUrl("http://streamer-mtc-aa03.somafm.com:80/stream/1018"), songs[1].url());
|
|
|
|
EXPECT_EQ(QUrl("http://streamer-ntc-aa04.somafm.com:80/stream/1018"), songs[2].url());
|
|
|
|
EXPECT_EQ(QUrl("http://ice.somafm.com/groovesalad"), songs[3].url());
|
2010-06-15 19:34:00 +02:00
|
|
|
EXPECT_EQ("SomaFM: Groove Salad (#1 128k mp3): A nicely chilled plate of ambient beats and grooves.", songs[0].title());
|
|
|
|
EXPECT_EQ("SomaFM: Groove Salad (#2 128k mp3): A nicely chilled plate of ambient beats and grooves.", songs[1].title());
|
|
|
|
EXPECT_EQ("SomaFM: Groove Salad (#3 128k mp3): A nicely chilled plate of ambient beats and grooves.", songs[2].title());
|
2011-02-13 19:35:26 +01:00
|
|
|
EXPECT_EQ(-1, songs[0].length_nanosec());
|
2011-03-20 13:43:10 +01:00
|
|
|
EXPECT_TRUE(songs[0].is_stream());
|
2010-06-15 19:34:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(PLSParserTest, ParseSomaFM2) {
|
|
|
|
shared_ptr<QFile> file(Open("secretagent.pls"));
|
|
|
|
|
|
|
|
SongList songs = parser_.Load(file.get());
|
|
|
|
ASSERT_EQ(4, songs.length());
|
2011-04-28 14:27:53 +02:00
|
|
|
EXPECT_EQ(QUrl("http://streamer-ntc-aa03.somafm.com:80/stream/1021"), songs[0].url());
|
|
|
|
EXPECT_EQ(QUrl("http://streamer-mtc-aa04.somafm.com:80/stream/1021"), songs[1].url());
|
|
|
|
EXPECT_EQ(QUrl("http://streamer-dtc-aa05.somafm.com:80/stream/1021"), songs[2].url());
|
|
|
|
EXPECT_EQ(QUrl("http://ice.somafm.com/secretagent"), songs[3].url());
|
2010-06-15 19:34:00 +02:00
|
|
|
EXPECT_EQ("SomaFM: Secret Agent (#1 128k mp3): The soundtrack for your stylish, mysterious, dangerous life. For Spies and PIs too!", songs[0].title());
|
|
|
|
EXPECT_EQ("SomaFM: Secret Agent (#2 128k mp3): The soundtrack for your stylish, mysterious, dangerous life. For Spies and PIs too!", songs[1].title());
|
|
|
|
EXPECT_EQ("SomaFM: Secret Agent (#3 128k mp3): The soundtrack for your stylish, mysterious, dangerous life. For Spies and PIs too!", songs[2].title());
|
2011-02-13 19:35:26 +01:00
|
|
|
EXPECT_EQ(-1, songs[0].length_nanosec());
|
2011-03-20 13:43:10 +01:00
|
|
|
EXPECT_TRUE(songs[0].is_stream());
|
2010-05-22 23:11:22 +02:00
|
|
|
}
|
2010-05-22 23:27:51 +02:00
|
|
|
|
|
|
|
TEST_F(PLSParserTest, SaveAndLoad) {
|
|
|
|
Song one;
|
2011-04-28 14:27:53 +02:00
|
|
|
one.set_url(QUrl("http://www.example.com/foo.mp3"));
|
2010-06-15 19:34:00 +02:00
|
|
|
one.set_title("Foo, with, some, commas");
|
2010-05-22 23:27:51 +02:00
|
|
|
|
|
|
|
Song two;
|
2011-04-28 14:27:53 +02:00
|
|
|
two.set_url(QUrl("relative/bar.mp3"));
|
2010-05-22 23:27:51 +02:00
|
|
|
two.set_title("Bar");
|
2011-02-14 20:34:37 +01:00
|
|
|
two.set_length_nanosec(123 * kNsecPerSec);
|
2010-05-22 23:27:51 +02:00
|
|
|
|
|
|
|
SongList songs;
|
|
|
|
songs << one << two;
|
|
|
|
|
|
|
|
QTemporaryFile temp;
|
|
|
|
temp.open();
|
|
|
|
parser_.Save(songs, &temp);
|
|
|
|
|
|
|
|
temp.seek(0);
|
2011-01-12 00:09:59 +01:00
|
|
|
songs = parser_.Load(&temp, "", QDir("/meep"));
|
2010-05-22 23:27:51 +02:00
|
|
|
|
|
|
|
ASSERT_EQ(2, songs.count());
|
2011-04-28 14:27:53 +02:00
|
|
|
EXPECT_EQ(one.url(), songs[0].url());
|
|
|
|
EXPECT_EQ(QUrl("file:///meep/relative/bar.mp3"), songs[1].url());
|
2010-05-22 23:27:51 +02:00
|
|
|
EXPECT_EQ(one.title(), songs[0].title());
|
|
|
|
EXPECT_EQ(two.title(), songs[1].title());
|
2011-02-13 19:35:26 +01:00
|
|
|
EXPECT_EQ(one.length_nanosec(), songs[0].length_nanosec());
|
|
|
|
EXPECT_EQ(two.length_nanosec(), songs[1].length_nanosec());
|
2010-05-22 23:27:51 +02:00
|
|
|
}
|