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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
#include <config.h>
#include <apt-pkg/error.h>
#include <cerrno>
#include <cstddef>
#include <cstring>
#include <string>
#include "common.h"
TEST(GlobalErrorTest,BasicDiscard)
{
GlobalError e;
EXPECT_TRUE(e.empty());
EXPECT_FALSE(e.PendingError());
EXPECT_FALSE(e.Notice("%s Notice", "A"));
EXPECT_TRUE(e.empty());
EXPECT_FALSE(e.empty(GlobalError::DEBUG));
EXPECT_FALSE(e.PendingError());
EXPECT_FALSE(e.Error("%s horrible %s %d times", "Something", "happened", 2));
EXPECT_TRUE(e.PendingError());
std::string text;
EXPECT_FALSE(e.PopMessage(text));
EXPECT_TRUE(e.PendingError());
EXPECT_EQ("A Notice", text);
EXPECT_TRUE(e.PopMessage(text));
EXPECT_EQ("Something horrible happened 2 times", text);
EXPECT_TRUE(e.empty(GlobalError::DEBUG));
EXPECT_FALSE(e.PendingError());
EXPECT_FALSE(e.Error("%s horrible %s %d times", "Something", "happened", 2));
EXPECT_TRUE(e.PendingError());
EXPECT_FALSE(e.empty(GlobalError::FATAL));
e.Discard();
EXPECT_TRUE(e.empty());
EXPECT_FALSE(e.PendingError());
}
TEST(GlobalErrorTest,StackPushing)
{
GlobalError e;
EXPECT_FALSE(e.Notice("%s Notice", "A"));
EXPECT_FALSE(e.Error("%s horrible %s %d times", "Something", "happened", 2));
EXPECT_TRUE(e.PendingError());
EXPECT_FALSE(e.empty(GlobalError::NOTICE));
e.PushToStack();
EXPECT_TRUE(e.empty(GlobalError::NOTICE));
EXPECT_FALSE(e.PendingError());
EXPECT_FALSE(e.Warning("%s Warning", "A"));
EXPECT_TRUE(e.empty(GlobalError::ERROR));
EXPECT_FALSE(e.PendingError());
e.RevertToStack();
EXPECT_FALSE(e.empty(GlobalError::ERROR));
EXPECT_TRUE(e.PendingError());
std::string text;
EXPECT_FALSE(e.PopMessage(text));
EXPECT_TRUE(e.PendingError());
EXPECT_EQ("A Notice", text);
EXPECT_TRUE(e.PopMessage(text));
EXPECT_EQ("Something horrible happened 2 times", text);
EXPECT_FALSE(e.PendingError());
EXPECT_TRUE(e.empty());
EXPECT_FALSE(e.Notice("%s Notice", "A"));
EXPECT_FALSE(e.Error("%s horrible %s %d times", "Something", "happened", 2));
EXPECT_TRUE(e.PendingError());
EXPECT_FALSE(e.empty(GlobalError::NOTICE));
e.PushToStack();
EXPECT_TRUE(e.empty(GlobalError::NOTICE));
EXPECT_FALSE(e.PendingError());
EXPECT_FALSE(e.Warning("%s Warning", "A"));
EXPECT_TRUE(e.empty(GlobalError::ERROR));
EXPECT_FALSE(e.PendingError());
e.MergeWithStack();
EXPECT_FALSE(e.empty(GlobalError::ERROR));
EXPECT_TRUE(e.PendingError());
EXPECT_FALSE(e.PopMessage(text));
EXPECT_TRUE(e.PendingError());
EXPECT_EQ("A Notice", text);
EXPECT_TRUE(e.PopMessage(text));
EXPECT_EQ("Something horrible happened 2 times", text);
EXPECT_FALSE(e.PendingError());
EXPECT_FALSE(e.empty());
EXPECT_FALSE(e.PopMessage(text));
EXPECT_EQ("A Warning", text);
EXPECT_TRUE(e.empty());
}
TEST(GlobalErrorTest,Errno)
{
GlobalError e;
std::string const textOfErrnoZero(strerror(0));
errno = 0;
EXPECT_FALSE(e.Errno("errno", "%s horrible %s %d times", "Something", "happened", 2));
EXPECT_FALSE(e.empty());
EXPECT_TRUE(e.PendingError());
std::string text;
EXPECT_TRUE(e.PopMessage(text));
EXPECT_FALSE(e.PendingError());
EXPECT_EQ(std::string("Something horrible happened 2 times - errno (0: ").append(textOfErrnoZero).append(")"), text);
EXPECT_TRUE(e.empty());
}
TEST(GlobalErrorTest,LongMessage)
{
GlobalError e;
std::string const textOfErrnoZero(strerror(0));
errno = 0;
std::string text, longText;
for (size_t i = 0; i < 500; ++i)
longText.append("a");
EXPECT_FALSE(e.Error("%s horrible %s %d times", longText.c_str(), "happened", 2));
EXPECT_TRUE(e.PopMessage(text));
EXPECT_EQ(longText + " horrible happened 2 times", text);
EXPECT_FALSE(e.Errno("errno", "%s horrible %s %d times", longText.c_str(), "happened", 2));
EXPECT_TRUE(e.PopMessage(text));
EXPECT_EQ(longText + " horrible happened 2 times - errno (0: " + textOfErrnoZero + ")", text);
EXPECT_FALSE(e.Error("%s horrible %s %d times", longText.c_str(), "happened", 2));
std::ostringstream out;
e.DumpErrors(out);
EXPECT_EQ(std::string("E: ").append(longText).append(" horrible happened 2 times\n"), out.str());
EXPECT_FALSE(e.Errno("errno", "%s horrible %s %d times", longText.c_str(), "happened", 2));
std::ostringstream out2;
e.DumpErrors(out2);
EXPECT_EQ(std::string("E: ").append(longText).append(" horrible happened 2 times - errno (0: ").append(textOfErrnoZero).append(")\n"), out2.str());
}
TEST(GlobalErrorTest,UTF8Message)
{
GlobalError e;
std::string text;
EXPECT_FALSE(e.Warning("Репозиторий не обновлён и будут %d %s", 4, "test"));
EXPECT_FALSE(e.PopMessage(text));
EXPECT_EQ("Репозиторий не обновлён и будут 4 test", text);
EXPECT_FALSE(e.Warning("Репозиторий не обновлён и будут %d %s", 4, "test"));
std::ostringstream out;
e.DumpErrors(out);
EXPECT_EQ("W: Репозиторий не обновлён и будут 4 test\n", out.str());
std::string longText;
for (size_t i = 0; i < 50; ++i)
longText.append("РезийбёбAZ");
EXPECT_FALSE(e.Warning("%s", longText.c_str()));
EXPECT_FALSE(e.PopMessage(text));
EXPECT_EQ(longText, text);
}
TEST(GlobalErrorTest,MultiLineMessage)
{
GlobalError e;
std::string text;
EXPECT_FALSE(e.Warning("Sometimes one line isn't enough.\nYou do know what I mean, right?\r\n%s?\rGood because I don't.", "Right"));
EXPECT_FALSE(e.PopMessage(text));
EXPECT_EQ("Sometimes one line isn't enough.\nYou do know what I mean, right?\r\nRight?\rGood because I don't.", text);
EXPECT_FALSE(e.Warning("Sometimes one line isn't enough.\nYou do know what I mean, right?\r\n%s?\rGood because I don't.", "Right"));
std::ostringstream out;
e.DumpErrors(out);
EXPECT_EQ("W: Sometimes one line isn't enough.\n You do know what I mean, right?\n Right?\n Good because I don't.\n", out.str());
EXPECT_FALSE(e.Warning("Sometimes one line isn't enough.\nYou do know what I mean, right?\r\n%s?\rGood because I don't.\n", "Right"));
std::ostringstream out2;
e.DumpErrors(out2);
EXPECT_EQ("W: Sometimes one line isn't enough.\n You do know what I mean, right?\n Right?\n Good because I don't.\n", out2.str());
}
|