Server IP : 104.21.38.3 / Your IP : 162.158.106.190 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/unittest/gunit/ |
Upload File : |
/* Copyright (c) 2013, 2023, Oracle and/or its affiliates. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2.0, as published by the Free Software Foundation. This program is also distributed with certain software (including but not limited to OpenSSL) that is licensed under separate terms, as designated in a particular file or component or in included license documentation. The authors of MySQL hereby grant you an additional permission to link the program and your derivative works with the separately licensed software that they have included with MySQL. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0, for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ // First include (the generated) my_config.h, to get correct platform defines. #include "my_config.h" #include <gtest/gtest.h> #include <gmock/gmock.h> // Ignore test on windows, as we are mocking away a unix function, see below. #ifndef _WIN32 namespace mysys_my_pwrite_unittest { using ::testing::_; using ::testing::InSequence; using ::testing::Return; using ::testing::ReturnPointee; using ::testing::SetErrnoAndReturn; class MockWrite { public: virtual ~MockWrite() {} MOCK_METHOD4(mockwrite, ssize_t(int, const void *, size_t, off_t)); MOCK_METHOD3(mockseek, off_t(int, off_t, int)); }; MockWrite *mockfs= NULL; // We need to mock away pwrite(2), do it with a macro: #define pwrite(fd, buf, count, offset) mockfs->mockwrite(fd, buf, count, offset) #define lseek(fd, offset, whence) mockfs->mockseek(fd, offset, whence) /* Include the source file, which will give us mysys_my_pwrite_unittest::my_pwrite() for testing. */ #include "../../mysys/my_pread.c" #undef pwrite #undef lseek class MysysMyPWriteTest : public ::testing::Test { virtual void SetUp() { mockfs= new MockWrite; m_offset= 0; EXPECT_CALL(*mockfs, mockseek(_, m_offset, _)) .WillRepeatedly(ReturnPointee(&m_offset)); } virtual void TearDown() { delete mockfs; mockfs= NULL; } public: my_off_t m_offset; }; // Test of normal case: write OK TEST_F(MysysMyPWriteTest, MyPWriteOK) { uchar buf[4096]; InSequence s; EXPECT_CALL(*mockfs, mockwrite(_, _, 4096, _)) .Times(1) .WillOnce(Return(4096)); const size_t result= my_pwrite(42, buf, 4096, m_offset, 0); EXPECT_EQ(4096U, result); } // Test of normal case: write OK with MY_NABP TEST_F(MysysMyPWriteTest, MyPWriteOKNABP) { uchar buf[4096]; InSequence s; EXPECT_CALL(*mockfs, mockwrite(_, _, 4096, _)) .Times(1) .WillOnce(Return(4096)); const size_t result= my_pwrite(42, buf, 4096, m_offset, MYF(MY_NABP)); EXPECT_EQ(0U, result); } // Test of disk full: write not OK TEST_F(MysysMyPWriteTest, MyPWriteFail) { uchar buf[4096]; InSequence s; EXPECT_CALL(*mockfs, mockwrite(_, _, 4096, _)) .Times(1) .WillOnce(SetErrnoAndReturn(ENOSPC, -1)); const size_t result= my_pwrite(42, buf, 4096, m_offset, 0); EXPECT_EQ(MY_FILE_ERROR, result); } // Test of disk full: write not OK, with MY_NABP TEST_F(MysysMyPWriteTest, MyPWriteFailNABP) { uchar buf[4096]; InSequence s; EXPECT_CALL(*mockfs, mockwrite(_, _, 4096, _)) .Times(1) .WillOnce(SetErrnoAndReturn(ENOSPC, -1)); const size_t result= my_pwrite(42, buf, 4096, m_offset, MYF(MY_NABP)); EXPECT_EQ(MY_FILE_ERROR, result); } // Test of disk full after partial write. TEST_F(MysysMyPWriteTest, MyPWrite8192) { uchar buf[8192]; InSequence s; // Expect call to write 8192 bytes, return 4096. EXPECT_CALL(*mockfs, mockwrite(_, _, 8192, _)) .Times(1) .WillOnce(Return(4096)); // Expect second call to write remaining 4096 bytes, return disk full. EXPECT_CALL(*mockfs, mockwrite(_, _, 4096, _)) .Times(1) .WillOnce(SetErrnoAndReturn(ENOSPC, -1)); const size_t result= my_pwrite(42, buf, 8192, m_offset, 0); EXPECT_EQ(4096U, result); } // Test of disk full after partial write. TEST_F(MysysMyPWriteTest, MyPWrite8192NABP) { uchar buf[8192]; InSequence s; // Expect call to write 8192 bytes, return 4096. EXPECT_CALL(*mockfs, mockwrite(_, _, 8192, _)) .Times(1) .WillOnce(Return(4096)); // Expect second call to write remaining 4096 bytes, return disk full. EXPECT_CALL(*mockfs, mockwrite(_, _, 4096, _)) .Times(1) .WillOnce(SetErrnoAndReturn(ENOSPC, -1)); const size_t result= my_pwrite(42, buf, 8192, m_offset, MYF(MY_NABP)); EXPECT_EQ(MY_FILE_ERROR, result); } // Test of partial write, followed by interrupt, followed by successful write. TEST_F(MysysMyPWriteTest, MyPWrite8192Interrupt) { uchar buf[8192]; InSequence s; // Expect call to write 8192 bytes, return 4096. EXPECT_CALL(*mockfs, mockwrite(_, _, 8192, _)) .Times(1) .WillOnce(Return(4096)); // Expect second call to write remaining 4096 bytes, return interrupt. EXPECT_CALL(*mockfs, mockwrite(_, _, 4096, _)) .Times(1) .WillOnce(SetErrnoAndReturn(EINTR, -1)); // Expect third call to write remaining 4096 bytes, return 4096. EXPECT_CALL(*mockfs, mockwrite(_, _, 4096, _)) .Times(1) .WillOnce(Return(4096)); const size_t result= my_pwrite(42, buf, 8192, m_offset, 0); EXPECT_EQ(8192U, result); } // Test of partial write, followed by interrupt, followed by successful write. TEST_F(MysysMyPWriteTest, MyPWrite8192InterruptNABP) { uchar buf[8192]; InSequence s; // Expect call to write 8192 bytes, return 4096. EXPECT_CALL(*mockfs, mockwrite(_, _, 8192, _)) .Times(1) .WillOnce(Return(4096)); // Expect second call to write remaining 4096 bytes, return interrupt. EXPECT_CALL(*mockfs, mockwrite(_, _, 4096, _)) .Times(1) .WillOnce(SetErrnoAndReturn(EINTR, -1)); // Expect third call to write remaining 4096 bytes, return 4096. EXPECT_CALL(*mockfs, mockwrite(_, _, 4096, _)) .Times(1) .WillOnce(Return(4096)); const size_t result= my_pwrite(42, buf, 8192, m_offset, MYF(MY_NABP)); EXPECT_EQ(0U, result); } // Test of partial write, followed successful write. TEST_F(MysysMyPWriteTest, MyPWrite400) { uchar buf[400]; InSequence s; EXPECT_CALL(*mockfs, mockwrite(_, _, 400, _)) .Times(1) .WillOnce(Return(200)); EXPECT_CALL(*mockfs, mockwrite(_, _, 200, _)) .Times(1) .WillOnce(Return(200)); const size_t result= my_pwrite(42, buf, 400, m_offset, 0); EXPECT_EQ(400U, result); } // Test of partial write, followed successful write. TEST_F(MysysMyPWriteTest, MyPWrite400NABP) { uchar buf[400]; InSequence s; EXPECT_CALL(*mockfs, mockwrite(_, _, 400, _)) .Times(1) .WillOnce(Return(200)); EXPECT_CALL(*mockfs, mockwrite(_, _, 200, _)) .Times(1) .WillOnce(Return(200)); const size_t result= my_pwrite(42, buf, 400, m_offset, MYF(MY_NABP)); EXPECT_EQ(0U, result); } // Test of partial write, followed by failure, followed successful write. TEST_F(MysysMyPWriteTest, MyPWrite300) { uchar buf[300]; InSequence s; EXPECT_CALL(*mockfs, mockwrite(_, _, 300, _)) .Times(1) .WillOnce(Return(100)); EXPECT_CALL(*mockfs, mockwrite(_, _, 200, _)) .Times(1) .WillOnce(SetErrnoAndReturn(EAGAIN, 0)); EXPECT_CALL(*mockfs, mockwrite(_, _, 200, _)) .Times(1) .WillOnce(Return(200)); const size_t result= my_pwrite(42, buf, 300, m_offset, 0); EXPECT_EQ(300U, result); } } #endif