aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_dsf.cpp
blob: a096eef0acdeb1adaa8a7b24d446cce6034224a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include <string>
#include <stdio.h>
#include <tag.h>
#include <tbytevectorlist.h>
#include <dsffile.h>
#include <cppunit/extensions/HelperMacros.h>
#include "utils.h"

using namespace std;
using namespace TagLib;

class TestDSF : public CppUnit::TestFixture
{
  CPPUNIT_TEST_SUITE(TestDSF);
  CPPUNIT_TEST(testBasic);
  CPPUNIT_TEST(testTags);
  CPPUNIT_TEST_SUITE_END();

public:

  void testBasic()
  {
    DSF::File f(TEST_FILE_PATH_C("empty10ms.dsf"));
    CPPUNIT_ASSERT(f.audioProperties());
    CPPUNIT_ASSERT_EQUAL(0, f.audioProperties()->length());
    CPPUNIT_ASSERT_EQUAL(0, f.audioProperties()->lengthInSeconds());
    CPPUNIT_ASSERT_EQUAL(10, f.audioProperties()->lengthInMilliseconds());
    CPPUNIT_ASSERT_EQUAL(5645, f.audioProperties()->bitrate());
    CPPUNIT_ASSERT_EQUAL(2, f.audioProperties()->channels());
    CPPUNIT_ASSERT_EQUAL(2822400, f.audioProperties()->sampleRate());
    CPPUNIT_ASSERT_EQUAL(1, f.audioProperties()->formatVersion());
    CPPUNIT_ASSERT_EQUAL(0, f.audioProperties()->formatID());
    CPPUNIT_ASSERT_EQUAL(2, f.audioProperties()->channelType());
    CPPUNIT_ASSERT_EQUAL(1, f.audioProperties()->bitsPerSample());
    CPPUNIT_ASSERT_EQUAL((long long)28224, f.audioProperties()->sampleCount());
    CPPUNIT_ASSERT_EQUAL(4096, f.audioProperties()->blockSizePerChannel());
  }

  void testTags()
  {
    ScopedFileCopy copy("empty10ms", ".dsf");
    string newname = copy.fileName();

    DSF::File *f = new DSF::File(newname.c_str());
    CPPUNIT_ASSERT_EQUAL(String(""), f->tag()->artist());
    f->tag()->setArtist("The Artist");
    f->save();
    delete f;

    f = new DSF::File(newname.c_str());
    CPPUNIT_ASSERT_EQUAL(String("The Artist"), f->tag()->artist());
    delete f;
  }

};

CPPUNIT_TEST_SUITE_REGISTRATION(TestDSF);