kdelibs/kcddb/test/synchttpsubmittest.cpp
Ivailo Monev a0dbbaabdf generic: rename merged libraries directories for consistency
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2015-10-29 13:57:28 +02:00

72 lines
2 KiB
C++

/*
Copyright (C) 2003 Richard Lärkäng <nouseforaname@home.se>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include <kdebug.h>
#include <kapplication.h>
#include <kcmdlineargs.h>
#include "libkcddb/client.h"
#include "libkcddb/kcddbconfig.h"
#include "libkcddb/submit.h"
int
main(int argc, char ** argv)
{
KCmdLineArgs::init(argc, argv, "libkcddb_test", 0, KLocalizedString(), "");
KApplication app(false /* No styles */);
using namespace KCDDB;
TrackOffsetList list;
list
<< 150 // First track start.
<< 2592
<< 35472
<< 47891
<< 123310
<< 133125; // Disc end.
CDInfo cdInfo;
cdInfo.set("discid", "3606ed05");
cdInfo.set("revision", 4);
cdInfo.set("title", "Bamse och Bronto");
cdInfo.set("artist", "Musiksage");
cdInfo.set("year", 2001);
cdInfo.set("category", "misc");
cdInfo.set("genre", "Barnsaga");
cdInfo.set("extd", QString::fromUtf8("Berättare: Olof Thunberg"));
cdInfo.track(0).set("title", "Bamses signaturmelodi");
cdInfo.track(1).set("title","*");
cdInfo.track(2).set("title", "Brummavisan");
cdInfo.track(3).set("title", "*");
cdInfo.track(4).set("title", QString::fromUtf8("Jätteödlan Bronto"));
Client c;
c.config().setFreedbSubmitTransport(Submit::HTTP);
c.setBlockingMode( true );
Result r = c.submit(cdInfo, list);
kDebug() << "Result: " << resultToString(r);
}