test-mangle.cpp 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. // Not sure where to begin with gtest?
  2. //
  3. // What can I test with gtest?
  4. //
  5. // googletest/googletest/docs/primer.md
  6. #include "render.h"
  7. #include "terminal.h"
  8. #include "utils.h"
  9. #include "wordplay.h"
  10. #include "gtest/gtest.h"
  11. #include <errno.h>
  12. #include <fcntl.h>
  13. #include <string>
  14. #include <sys/stat.h>
  15. #include <sys/types.h>
  16. #include <time.h>
  17. #include <unistd.h>
  18. #define GTEST_COUT std::cerr << "[ ] [ INFO ]"
  19. struct console_details console;
  20. int harry_level(void) { return 4; }
  21. int randint(int x) { return 1; }
  22. int randrange(int x, int y) { return x; }
  23. int random_activate(int x) { return 1; }
  24. char *repr(const char *) {
  25. static char text[] = "tada!";
  26. return text;
  27. }
  28. bool replace(std::string &str, const std::string &from, const std::string &to) {
  29. size_t start_pos = str.find(from);
  30. if (start_pos == std::string::npos)
  31. return false;
  32. str.replace(start_pos, from.length(), to);
  33. return true;
  34. }
  35. const char *logrepr(const char *) {
  36. static char text[] = "repr!";
  37. return text;
  38. }
  39. namespace {
  40. class MangleFixture : public ::testing::Test {
  41. public:
  42. time_t start;
  43. int fd;
  44. const char *filename = "mangle.testing";
  45. protected:
  46. virtual void SetUp() {
  47. console_init(&console);
  48. start = time(NULL);
  49. // creat : File is WRITE ONLY.
  50. fd = creat(filename, S_IRUSR | S_IWUSR);
  51. }
  52. virtual void TearDown() {
  53. if (fd > 0)
  54. close(fd);
  55. unlink(filename);
  56. }
  57. };
  58. TEST_F(MangleFixture, TestMangle) {
  59. std::string data("The bear is sticky");
  60. // This tests the tangler code
  61. mangle(fd, data);
  62. int lfd = open(filename, O_RDONLY);
  63. char buffer[100];
  64. int len = read(lfd, buffer, sizeof(buffer));
  65. if (len == -1) {
  66. ASSERT_EQ(errno, 0);
  67. }
  68. buffer[len] = 0;
  69. close(lfd);
  70. GTEST_COUT << "buffer:" << buffer << std::endl;
  71. ASSERT_STREQ(
  72. buffer,
  73. "T \bh \be \b \bb \be \ba \br \b \bi \bs \b \bs \bt \bi \bc \bk \by \b");
  74. }
  75. /*
  76. TEST_F(RenderFixture, ColorTest) {
  77. ASSERT_GT(fd, 0);
  78. std::string colors("^C01One^C02Two^C03Three^C04Four");
  79. render(fd, colors);
  80. int lfd = open(filename, O_RDONLY);
  81. char buffer[100];
  82. int len = read(lfd, buffer, sizeof(buffer));
  83. if (len == -1) {
  84. ASSERT_EQ(errno, 0);
  85. }
  86. buffer[len] = 0;
  87. close(lfd);
  88. GTEST_COUT << "buffer:" << buffer << std::endl;
  89. ASSERT_EQ(len, 43);
  90. ASSERT_STREQ(buffer,
  91. "\x1B[0;34mOne\x1B[0;32mTwo\x1B[0;36mThree\x1B[0;31mFour");
  92. struct console_details cons;
  93. console_init(&cons);
  94. int color_list[4] = {4, 2, 6, 1};
  95. int color = 0;
  96. for (int x = 0; x < len; ++x) {
  97. termchar tc;
  98. tc = console_char(&cons, buffer[x]);
  99. if (tc.ansi == COLOR) {
  100. GTEST_COUT << "Console color:" << cons.fgcolor << std::endl;
  101. ASSERT_EQ(cons.fgcolor, color_list[color]);
  102. color++;
  103. }
  104. }
  105. ASSERT_EQ(color, 4);
  106. }
  107. TEST_F(RenderFixture, ColorEffectTest) {
  108. std::string colors("^S1^R1\x1b[1;33;44mMEOW!\x1b[0m");
  109. render(fd, colors);
  110. int lfd = open(filename, O_RDONLY);
  111. char buffer[100];
  112. int len = read(lfd, buffer, sizeof(buffer));
  113. if (len == -1) {
  114. ASSERT_EQ(errno, 0);
  115. }
  116. buffer[len] = 0;
  117. close(lfd);
  118. ASSERT_EQ(strstr(buffer, "\x1b[1;33;44m"), buffer);
  119. GTEST_COUT << "buffer:" << buffer << std::endl;
  120. ASSERT_EQ(len, 29);
  121. ASSERT_STREQ(buffer, "\x1b[1;33;44mM \bE \bO \bW \b! \b\x1b[0m");
  122. }
  123. */
  124. } // namespace