blob: 482a32a65409d5ab2059eee2986b5b191de7a45f [file] [log] [blame]
/*
* Copyright (C) 2022 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <RtpBuffer.h>
#include <gtest/gtest.h>
namespace android {
class RtpBufferTest : public ::testing::Test {
public:
RtpBuffer *testBuf;
protected:
virtual void SetUp() override {
testBuf = new RtpBuffer();
ASSERT_TRUE(testBuf != nullptr);
}
virtual void TearDown() override {
if(testBuf)
{
delete testBuf;
testBuf = nullptr;
}
}
};
TEST_F(RtpBufferTest, InitTest) {
EXPECT_EQ(0, testBuf->getLength());
ASSERT_TRUE(testBuf->getBuffer() == nullptr);
}
TEST_F(RtpBufferTest, SetLengthTest) {
testBuf->setLength(10);
EXPECT_EQ(10, testBuf->getLength());
}
TEST_F(RtpBufferTest, SetBufferInfoTest) {
RtpDt_UChar *pBuf = new RtpDt_UChar[8];
memcpy(pBuf, (RtpDt_UChar []){ 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08}, sizeof pBuf);
testBuf->setBufferInfo(sizeof pBuf, pBuf);
EXPECT_EQ(8, testBuf->getLength());
EXPECT_EQ(0, memcmp(testBuf->getBuffer(), pBuf, 8));
}
} // namespace android