|
1 | 1 | #include "app_helper.hpp"
|
2 | 2 | #include <complex>
|
3 | 3 | #include <cstdlib>
|
| 4 | +#include <sys/stat.h> |
4 | 5 |
|
5 | 6 | #include "gmock/gmock.h"
|
6 | 7 |
|
@@ -1697,6 +1698,50 @@ TEST_F(TApp, FileExists) {
|
1697 | 1698 | EXPECT_FALSE(CLI::ExistingFile(myfile).empty());
|
1698 | 1699 | }
|
1699 | 1700 |
|
| 1701 | +TEST_F(TApp, FileExistsForRead) { |
| 1702 | + std::string myfile{"TestNonFileNotUsed.txt"}; |
| 1703 | + EXPECT_FALSE(CLI::ExistingReadableFile(myfile).empty()); |
| 1704 | + |
| 1705 | + bool ok = static_cast<bool>(std::ofstream(myfile.c_str()).put('a')); // create file |
| 1706 | + EXPECT_TRUE(ok); |
| 1707 | + |
| 1708 | + std::string filename = "Failed"; |
| 1709 | + app.add_option("--file", filename)->check(CLI::ExistingReadableFile); |
| 1710 | + args = {"--file", myfile}; |
| 1711 | + |
| 1712 | + run(); |
| 1713 | + |
| 1714 | + EXPECT_EQ(myfile, filename); |
| 1715 | +#ifdef __linux__ |
| 1716 | + my_chmod(myfile.c_str(), 0); |
| 1717 | + EXPECT_THROW(run(), CLI::ValidationError); |
| 1718 | +#endif |
| 1719 | + std::remove(myfile.c_str()); |
| 1720 | + EXPECT_FALSE(CLI::ExistingFile(myfile).empty()); |
| 1721 | +} |
| 1722 | + |
| 1723 | +TEST_F(TApp, FileExistsForWrite) { |
| 1724 | + std::string myfile{"TestNonFileNotUsed.txt"}; |
| 1725 | + EXPECT_FALSE(CLI::ExistingWritableFile(myfile).empty()); |
| 1726 | + |
| 1727 | + bool ok = static_cast<bool>(std::ofstream(myfile.c_str()).put('a')); // create file |
| 1728 | + EXPECT_TRUE(ok); |
| 1729 | + |
| 1730 | + std::string filename = "Failed"; |
| 1731 | + app.add_option("--file", filename)->check(CLI::ExistingWritableFile); |
| 1732 | + args = {"--file", myfile}; |
| 1733 | + |
| 1734 | + run(); |
| 1735 | + EXPECT_EQ(myfile, filename); |
| 1736 | + |
| 1737 | + my_chmod(myfile.c_str(), S_IREAD); |
| 1738 | + EXPECT_THROW(run(), CLI::ValidationError); |
| 1739 | + |
| 1740 | + int ret = std::remove(myfile.c_str()); |
| 1741 | + EXPECT_EQ(ret, 0); |
| 1742 | + EXPECT_FALSE(CLI::ExistingFile(myfile).empty()); |
| 1743 | +} |
| 1744 | + |
1700 | 1745 | TEST_F(TApp, NotFileExists) {
|
1701 | 1746 | std::string myfile{"TestNonFileNotUsed.txt"};
|
1702 | 1747 | EXPECT_FALSE(CLI::ExistingFile(myfile).empty());
|
|
0 commit comments