diff options
author | geronimo <geronimo013@gmx.de> | 2012-07-22 11:38:43 +0200 |
---|---|---|
committer | geronimo <geronimo013@gmx.de> | 2012-07-22 11:38:43 +0200 |
commit | ab7186c6c116629983dc506c4b53794026518455 (patch) | |
tree | f5508dd32f35509fb45f7cf046a0a8e0bc1c4605 /cmps/tests/CodecTest.cc | |
parent | 04a867b018a8c6761047ef8878a4434692673084 (diff) | |
download | cmp-ab7186c6c116629983dc506c4b53794026518455.tar.gz cmp-ab7186c6c116629983dc506c4b53794026518455.tar.bz2 |
worked out new file class
Diffstat (limited to 'cmps/tests/CodecTest.cc')
-rw-r--r-- | cmps/tests/CodecTest.cc | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/cmps/tests/CodecTest.cc b/cmps/tests/CodecTest.cc index 071ff7b..3403810 100644 --- a/cmps/tests/CodecTest.cc +++ b/cmps/tests/CodecTest.cc @@ -2,7 +2,7 @@ * ======================== legal notice ====================== * * File: CodecTest.cc - * Created: 09.07.2012, 05:44:50 + * Created: 09.07.2012, 05 * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a> * Project: cmps - the backend (server) part of compound media player * @@ -35,6 +35,10 @@ static const char *TT[] = { , "http://localhost:12345/test/Mukke/36%20%20%20130%20-%20R.I.O.%20ft%20Jerry%20Ropero%20vs.%20Mendonca%20-%20Do%20Rio-De%20Janeiro%20Berinbau%20(Bootleg%20Edit).mp3" , "http://localhost:12345/import/Das_Verm%C3%A4chtnis_der_Tempelritter/2012-07-02.22.10.36-0.rec" , NULL +, "file:///media/audio/Collection/Rock/XIII. Století/Vampire Songs: Tajemství gothických archivů/(1 - 05) Smutné časy.mp3" +, "file:///media/audio/Collection/Rock/XIII. Století/Vampire Songs: Tajemství gothických archivů/(1 - 06) Starý hrabě.mp3" +, "file:///media/audio/Collection/Rock/XIII. Století/Nosferatu/(1 - 03) Nevěsta temnot.mp3" +, NULL }; void test1() @@ -54,6 +58,20 @@ void test1() void test2() { std::cout << "CodecTest test 2" << std::endl; + cURLEncoder *ue = new cURLEncoder(); + const char **p; + char *newText; + + for (p = TT + 8; p && *p; ++p) { + newText = ue->Encode(*p); + std::cout << "original: " << *p << std::endl; + std::cout << "encoded.: " << newText << std::endl << std::endl; + } +} + +void test3() +{ + std::cout << "CodecTest test 3" << std::endl; std::cout << "%TEST_FAILED% time=0 testname=test2 (CodecTest) message=error message sample" << std::endl; } @@ -66,9 +84,9 @@ int main(int argc, char** argv) test1(); std::cout << "%TEST_FINISHED% time=0 test1 (CodecTest)" << std::endl; -// std::cout << "%TEST_STARTED% test2 (CodecTest)\n" << std::endl; -// test2(); -// std::cout << "%TEST_FINISHED% time=0 test2 (CodecTest)" << std::endl; + std::cout << "%TEST_STARTED% test2 (CodecTest)\n" << std::endl; + test2(); + std::cout << "%TEST_FINISHED% time=0 test2 (CodecTest)" << std::endl; std::cout << "%SUITE_FINISHED% time=0" << std::endl; |