aboutsummaryrefslogtreecommitdiff
path: root/src/common_audio/vad/main/test/unit_test/unit_test.cc
blob: 8ac793e44e8e8d4225e2a0c34ac3e03107361623 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
 *  Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */


/*
 * This file includes the implementation of the VAD unit tests.
 */

#include <cstring>
#include "unit_test.h"
#include "webrtc_vad.h"


class VadEnvironment : public ::testing::Environment {
 public:
  virtual void SetUp() {
  }

  virtual void TearDown() {
  }
};

VadTest::VadTest()
{
}

void VadTest::SetUp() {
}

void VadTest::TearDown() {
}

TEST_F(VadTest, ApiTest) {
    VadInst *vad_inst;
    int i, j, k;
    short zeros[960];
    short speech[960];
    char version[32];

    // Valid test cases
    int fs[3] = {8000, 16000, 32000};
    int nMode[4] = {0, 1, 2, 3};
    int framelen[3][3] = {{80, 160, 240},
    {160, 320, 480}, {320, 640, 960}} ;
    int vad_counter = 0;

    memset(zeros, 0, sizeof(short) * 960);
    memset(speech, 1, sizeof(short) * 960);
    speech[13] = 1374;
    speech[73] = -3747;



    // WebRtcVad_get_version()
    WebRtcVad_get_version(version);
    //printf("API Test for %s\n", version);

    // Null instance tests
    EXPECT_EQ(-1, WebRtcVad_Create(NULL));
    EXPECT_EQ(-1, WebRtcVad_Init(NULL));
    EXPECT_EQ(-1, WebRtcVad_Assign(NULL, NULL));
    EXPECT_EQ(-1, WebRtcVad_Free(NULL));
    EXPECT_EQ(-1, WebRtcVad_set_mode(NULL, nMode[0]));
    EXPECT_EQ(-1, WebRtcVad_Process(NULL, fs[0], speech,  framelen[0][0]));


    EXPECT_EQ(WebRtcVad_Create(&vad_inst), 0);

    // Not initialized tests
    EXPECT_EQ(-1, WebRtcVad_Process(vad_inst, fs[0], speech,  framelen[0][0]));
    EXPECT_EQ(-1, WebRtcVad_set_mode(vad_inst, nMode[0]));

    // WebRtcVad_Init() tests
    EXPECT_EQ(WebRtcVad_Init(vad_inst), 0);

    // WebRtcVad_set_mode() tests
    EXPECT_EQ(-1, WebRtcVad_set_mode(vad_inst, -1));
    EXPECT_EQ(-1, WebRtcVad_set_mode(vad_inst, 4));

    for (i = 0; i < sizeof(nMode)/sizeof(nMode[0]); i++) {
        EXPECT_EQ(WebRtcVad_set_mode(vad_inst, nMode[i]), 0);
    }

    // WebRtcVad_Process() tests
    EXPECT_EQ(-1, WebRtcVad_Process(vad_inst, fs[0], NULL,  framelen[0][0]));
    EXPECT_EQ(-1, WebRtcVad_Process(vad_inst, 12000, speech,  framelen[0][0]));
    EXPECT_EQ(-1, WebRtcVad_Process(vad_inst, fs[0], speech,  framelen[1][1]));
    EXPECT_EQ(WebRtcVad_Process(vad_inst, fs[0], zeros,  framelen[0][0]), 0);
    for (i = 0; i < sizeof(fs)/sizeof(fs[0]); i++) {
        for (j = 0; j < sizeof(framelen[0])/sizeof(framelen[0][0]); j++) {
            for (k = 0; k < sizeof(nMode)/sizeof(nMode[0]); k++) {
                EXPECT_EQ(WebRtcVad_set_mode(vad_inst, nMode[k]), 0);
//                printf("%d\n", WebRtcVad_Process(vad_inst, fs[i], speech,  framelen[i][j]));
                if (vad_counter < 9)
                {
                    EXPECT_EQ(WebRtcVad_Process(vad_inst, fs[i], speech,  framelen[i][j]), 1);
                } else
                {
                    EXPECT_EQ(WebRtcVad_Process(vad_inst, fs[i], speech,  framelen[i][j]), 0);
                }
                vad_counter++;
            }
        }
    }

    EXPECT_EQ(0, WebRtcVad_Free(vad_inst));

}

int main(int argc, char** argv) {
  ::testing::InitGoogleTest(&argc, argv);
  VadEnvironment* env = new VadEnvironment;
  ::testing::AddGlobalTestEnvironment(env);

  return RUN_ALL_TESTS();
}