summaryrefslogtreecommitdiffstats
path: root/ppapi/shared_impl/media_stream_audio_track_shared_unittest.cc
blob: 78c10480c4382515a7f4f07b4f10672d69436648 (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
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ppapi/shared_impl/media_stream_audio_track_shared.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace ppapi {

TEST(MediaStreamAudioTrackShared, Verify) {
  {
    MediaStreamAudioTrackShared::Attributes attributes;
    EXPECT_TRUE(MediaStreamAudioTrackShared::VerifyAttributes(attributes));
  }

  // Verify buffers
  {
    MediaStreamAudioTrackShared::Attributes attributes;
    attributes.buffers = 0;
    EXPECT_TRUE(MediaStreamAudioTrackShared::VerifyAttributes(attributes));

    attributes.buffers = 8;
    EXPECT_TRUE(MediaStreamAudioTrackShared::VerifyAttributes(attributes));

    attributes.buffers = 1024;
    EXPECT_TRUE(MediaStreamAudioTrackShared::VerifyAttributes(attributes));

    attributes.buffers = -1;
    EXPECT_FALSE(MediaStreamAudioTrackShared::VerifyAttributes(attributes));
  }

  // Verify duration
  {
    MediaStreamAudioTrackShared::Attributes attributes;
    attributes.duration = 0;
    EXPECT_TRUE(MediaStreamAudioTrackShared::VerifyAttributes(attributes));

    attributes.duration = 10;
    EXPECT_TRUE(MediaStreamAudioTrackShared::VerifyAttributes(attributes));

    attributes.duration = 10000;
    EXPECT_TRUE(MediaStreamAudioTrackShared::VerifyAttributes(attributes));

    attributes.duration = 123;
    EXPECT_TRUE(MediaStreamAudioTrackShared::VerifyAttributes(attributes));

    attributes.duration = 9;
    EXPECT_FALSE(MediaStreamAudioTrackShared::VerifyAttributes(attributes));

    attributes.duration = -1;
    EXPECT_FALSE(MediaStreamAudioTrackShared::VerifyAttributes(attributes));
  }
}

}  // namespace ppapi