179 lines
4.8 KiB
C++
179 lines
4.8 KiB
C++
// Copyright 2024 KVCache.AI
|
|
//
|
|
// 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 <gflags/gflags.h>
|
|
#include <glog/logging.h>
|
|
#include <gtest/gtest.h>
|
|
#include <sys/time.h>
|
|
|
|
#include <cstdlib>
|
|
#include <fstream>
|
|
#include <iomanip>
|
|
#include <memory>
|
|
|
|
#include "transfer_engine.h"
|
|
#include "transport/transport.h"
|
|
|
|
using namespace mooncake;
|
|
|
|
namespace mooncake {
|
|
|
|
class TransportTest : public ::testing::Test {
|
|
protected:
|
|
void SetUp() override {
|
|
google::InitGoogleLogging("TransportTest");
|
|
FLAGS_logtostderr = 1;
|
|
}
|
|
|
|
void TearDown() override { google::ShutdownGoogleLogging(); }
|
|
};
|
|
|
|
static int CreateTempFile() {
|
|
char temp_filename[] = "/tmp/testfileXXXXXX";
|
|
int fd = mkstemp(temp_filename);
|
|
if (fd == -1) {
|
|
return -1;
|
|
}
|
|
unlink(temp_filename);
|
|
return fd;
|
|
}
|
|
|
|
int CreateTempFileWithContent(const char* content) {
|
|
char temp_filename[] = "/tmp/testfileXXXXXX";
|
|
int fd = mkstemp(temp_filename);
|
|
if (fd == -1) {
|
|
return -1;
|
|
}
|
|
unlink(temp_filename);
|
|
|
|
ssize_t nbytes = write(fd, content, strlen(content));
|
|
(void)nbytes;
|
|
lseek(fd, 0, SEEK_SET);
|
|
|
|
return fd;
|
|
}
|
|
|
|
TEST_F(TransportTest, parseHostNameWithPortTest) {
|
|
std::string local_server_name = "0.0.0.0:1234";
|
|
auto res = parseHostNameWithPort(local_server_name);
|
|
ASSERT_EQ(res.first, "0.0.0.0");
|
|
ASSERT_EQ(res.second, 1234);
|
|
|
|
local_server_name = "1.2.3.4:111111";
|
|
res = parseHostNameWithPort(local_server_name);
|
|
ASSERT_EQ(res.first, "1.2.3.4");
|
|
ASSERT_EQ(res.second, 12001);
|
|
}
|
|
|
|
TEST_F(TransportTest, WriteSuccess) {
|
|
int fd = CreateTempFile();
|
|
ASSERT_NE(fd, -1) << "Failed to create temporary file";
|
|
|
|
const char* testData = "Hello, World!";
|
|
size_t testDataLen = strlen(testData);
|
|
|
|
ssize_t result = writeFully(fd, testData, testDataLen);
|
|
EXPECT_EQ(result, static_cast<ssize_t>(testDataLen));
|
|
|
|
char buffer[256] = {0};
|
|
ssize_t nbytes = lseek(fd, 0, SEEK_SET);
|
|
(void)nbytes;
|
|
nbytes = read(fd, buffer, testDataLen);
|
|
(void)nbytes;
|
|
EXPECT_STREQ(buffer, testData);
|
|
|
|
close(fd);
|
|
}
|
|
|
|
TEST_F(TransportTest, WriteInvalidFD) {
|
|
const char* testData = "Hello, World!";
|
|
size_t testDataLen = strlen(testData);
|
|
|
|
ssize_t result = writeFully(-1, testData, testDataLen);
|
|
ASSERT_EQ(result, -1);
|
|
ASSERT_EQ(errno, EBADF);
|
|
}
|
|
|
|
TEST_F(TransportTest, PartialWrite) {
|
|
int fd = CreateTempFile();
|
|
ASSERT_NE(fd, -1) << "Failed to create temporary file";
|
|
|
|
const char* testData = "Hello, World!";
|
|
size_t testDataLen = strlen(testData);
|
|
|
|
ssize_t result = writeFully(fd, testData, testDataLen / 2);
|
|
|
|
ASSERT_EQ(result, static_cast<ssize_t>(testDataLen / 2));
|
|
|
|
char buffer[256] = {0};
|
|
lseek(fd, 0, SEEK_SET);
|
|
ssize_t nbytes = read(fd, buffer, result);
|
|
(void)nbytes;
|
|
ASSERT_EQ(strncmp(buffer, testData, result), 0);
|
|
close(fd);
|
|
}
|
|
|
|
TEST_F(TransportTest, ReadSuccess) {
|
|
const char* testData = "Hello, World!";
|
|
int fd = CreateTempFileWithContent(testData);
|
|
ASSERT_NE(fd, -1) << "Failed to create temporary file";
|
|
|
|
char buffer[256] = {0};
|
|
ssize_t bytesRead = readFully(fd, buffer, sizeof(buffer));
|
|
|
|
EXPECT_EQ(bytesRead, static_cast<ssize_t>(strlen(testData)));
|
|
EXPECT_STREQ(buffer, testData);
|
|
|
|
close(fd);
|
|
}
|
|
|
|
TEST_F(TransportTest, ReadInvalidFD) {
|
|
char buffer[256] = {0};
|
|
ssize_t bytesRead = readFully(-1, buffer, sizeof(buffer));
|
|
EXPECT_EQ(bytesRead, -1);
|
|
EXPECT_EQ(errno, EBADF);
|
|
}
|
|
|
|
TEST_F(TransportTest, PartialRead) {
|
|
const char* testData = "Hello, World!";
|
|
int fd = CreateTempFileWithContent(testData);
|
|
ASSERT_NE(fd, -1) << "Failed to create temporary file";
|
|
|
|
char buffer[256] = {0};
|
|
size_t half_len = strlen(testData) / 2;
|
|
ssize_t bytesRead = readFully(fd, buffer, half_len);
|
|
|
|
EXPECT_EQ(bytesRead, static_cast<ssize_t>(half_len));
|
|
EXPECT_EQ(strncmp(buffer, testData, half_len), 0);
|
|
|
|
close(fd);
|
|
}
|
|
|
|
TEST_F(TransportTest, ReadEmptyFile) {
|
|
int fd = CreateTempFileWithContent("");
|
|
ASSERT_NE(fd, -1) << "Failed to create temporary file";
|
|
|
|
char buffer[256] = {0};
|
|
ssize_t bytesRead = readFully(fd, buffer, sizeof(buffer));
|
|
|
|
EXPECT_EQ(bytesRead, static_cast<ssize_t>(0));
|
|
|
|
close(fd);
|
|
}
|
|
} // namespace mooncake
|
|
|
|
int main(int argc, char** argv) {
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
} |