You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

161 lines
6.9 KiB

  1. #include <stdlib.h>
  2. #include <time.h>
  3. #include <string.h>
  4. #include <unity.h>
  5. #include "../src/stringManipulation.c"
  6. void test_toUnsignedInteger()
  7. {
  8. /*variables*/
  9. char *n1 = "176", *n2 = "199", *n3 = "200", *n4 = "500", *n5 = "600", *n6 = "700";
  10. /*assertions*/
  11. TEST_ASSERT_EQUAL_INT(176,toUnsignedInteger(n1));
  12. TEST_ASSERT_EQUAL_INT(199,toUnsignedInteger(n2));
  13. TEST_ASSERT_EQUAL_INT(200,toUnsignedInteger(n3));
  14. TEST_ASSERT_EQUAL_INT(500,toUnsignedInteger(n4));
  15. TEST_ASSERT_EQUAL_INT(600,toUnsignedInteger(n5));
  16. TEST_ASSERT_EQUAL_INT(700,toUnsignedInteger(n6));
  17. }
  18. void test_everyCharacterIsDigit()
  19. {
  20. /*test block 1*/
  21. char *expectTrue[] = {"0","11","222","3333","4444","134132","12352378","12847273","1237873","9992475","987232","34723873278","578347823783","758378723","44293884742",
  22. "3184123872873","8912892383","18282828","55757575757528282","123823883282383282575757283832","99999999999999999999999999999999999","128321378","81293982139823","21412323"
  23. "575757575754646464648383838383","1298557648298219821398129381928391283918238912831283928391283129839281391283918238912391238912839182391239857517828"};
  24. int length = sizeof(expectTrue)/sizeof(char *);
  25. for(int i=0;i<length;++i){
  26. TEST_ASSERT_TRUE(everyCharacterIsDigit(expectTrue[i]));
  27. }
  28. /*test block 2*/
  29. char *expectFalse[] = {"a","bcd","dhdd","3asad87","askj","nxbdj","489sjk2kj","kjasjkd38234","aksjlas","bcbc838ch","akjsjkdjkq919191","askjsdakj492","kasjcncn","9919a19","cbajsh","askjajkd","ajshdasjh","jyxhyxjchyx","kasjdakj","vbvb88888888888888828282828282828askjh"};
  30. length = sizeof(expectFalse)/sizeof(char *);
  31. for(int i=0;i<length;++i){
  32. TEST_ASSERT_FALSE(everyCharacterIsDigit(expectFalse[i]));
  33. }
  34. }
  35. void test_power()
  36. {
  37. /*test block 1*/
  38. int testValues[] = {1,2,3,4,5,6,7,8,9,10};
  39. int expectedValues[] = {1,4,9,16,25,36,49,64,81,100};
  40. int length = sizeof(testValues)/sizeof(int);
  41. const int exponent = 2;
  42. for(int i=0;i<length;++i){
  43. TEST_ASSERT_EQUAL_INT(expectedValues[i], power(testValues[i],exponent));
  44. }
  45. /*test block 2*/
  46. int testValues_2[] = {11,12,13,14,15,16,17,18,19,20};
  47. int expectedValues_2[] = {121,144,169,196,225,256,289,324,361,400};
  48. length = sizeof(testValues_2)/sizeof(int);
  49. for(int i=0;i<length;++i){
  50. TEST_ASSERT_EQUAL_INT(expectedValues_2[i],power(testValues_2[i],exponent));
  51. }
  52. /*test block 3*/
  53. int testValues_3[] = {1,2,3,4,5,6,7,8,9,10};
  54. int expectedValues_3[] = {1,8,27,64,125,216,343,512,729,1000};
  55. const int exponent_2 = 3;
  56. length = sizeof(testValues_3)/sizeof(int);
  57. for(int i=0;i<length;++i){
  58. TEST_ASSERT_EQUAL_INT(expectedValues_3[i],power(testValues_3[i],exponent_2));
  59. }
  60. /*test block 4*/
  61. int testValues_4[] = {11,12,13,14,15,16,17,18,19,20};
  62. int expectedValues_4[] = {1331,1728,2197,2744,3375,4096,4913,5832,6859,8000};
  63. length = sizeof(testValues_4)/sizeof(int);
  64. for(int i=0;i<length;++i){
  65. TEST_ASSERT_EQUAL_INT(expectedValues_4[i],power(testValues_4[i],exponent_2));
  66. }
  67. /*test block 5*/
  68. int testValues_5[] = {0,0,19,2,4,5,11,54,32,12,77};
  69. int exponents[] = {0,1,2,7,4,2,0,1,2,4,2};
  70. int expectedValues_5[] = {0, 0, 361,128,256,25,1,54,1024,20736,5929};
  71. length = sizeof(testValues_5)/sizeof(int);
  72. for(int i=0;i<length;++i){
  73. TEST_ASSERT_EQUAL_INT(expectedValues_5[i], power(testValues_5[i],exponents[i]));
  74. }
  75. }
  76. void test_to_string()
  77. {
  78. /*initializing test values*/
  79. char *result_1[] = {"0","1","2","3","4","5","6","7","8","9","10"};
  80. char *result_2[] = {"500","502","504","506","508","510","512","514","516","518"};
  81. char *result_3[] = {"1000","2000","3000","4000","5000","6000","7000","8000","9000","10000"};
  82. char *result_4[] = {"9999","8999","7999","6999","5999","4999","3999","2999","1999","999"};
  83. char *result_5[] = {"1000000","2000000","3000000","4000000","5000000","6000000","7000000",
  84. "8000000","9000000","10000000"};
  85. /*assertions*/
  86. for(int i=0;i<=10;++i){
  87. TEST_ASSERT_EQUAL_STRING(result_1[i],to_string(i));
  88. }
  89. for(int i=0, j=500;i<10;++i,j+=2){
  90. TEST_ASSERT_EQUAL_STRING(result_2[i],to_string(j));
  91. }
  92. for(int i=0, j=1000;i<10;++i,j+=1000){
  93. TEST_ASSERT_EQUAL_STRING(result_3[i],to_string(j));
  94. }
  95. for(int i=0, j=9999;i<10;++i,j-=1000){
  96. TEST_ASSERT_EQUAL_STRING(result_4[i], to_string(j));
  97. }
  98. for(int i=0, j=1000000;i<10;++i,j+=1000000){
  99. TEST_ASSERT_EQUAL_STRING(result_5[i],to_string(j));
  100. }
  101. }
  102. void test_generateCheckString()
  103. {
  104. /*test block 1*/
  105. int numbers_1[] = {0,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};
  106. char *strings_1[] = {"a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"};
  107. char *result_1[] = {"0=a","1=b","2=c","3=d","4=e","5=f","6=g","7=h","8=i","9=j","10=k","11=l","12=m","13=n","14=o","15=p","16=q","17=r", "18=s","19=t","20=u","21=v","22=w","23=x","24=y","25=z"};
  108. for(int i=0;i<26;++i){
  109. TEST_ASSERT_EQUAL_STRING(result_1[i],generateCheckString(numbers_1[i],*(strings_1+i)));
  110. }
  111. /*test block 2*/
  112. int numbers_2[] = {0,1,1,2,3,5,8,13,21,34,55,89,144,233,377,610,987,1597,2584,4181,6765,10946,17711,28657,46368,75025};
  113. char *strings_2[] = {"z","zy","zyx","zyxw","zyxwv","zyxwvu","zyxwvut","zyxwvuts","zyxwvutsr","zyxwvutsrq","zyxwvutsrqp",
  114. "zyxwvutsrqpo","zyxwvutsrqpon","zyxwvutsrqponm","zyxwvutsrqponml","zyxwvutsrqponmlk",
  115. "zyxwvutsrqponmlkj","zyxwvutsrqponmlkji","zyxwvutsrqponmlkjih","zyxwvutsrqponmlkjihg","zyxwvutsrqponmlkjihgf",
  116. "zyxwvutsrqponmlkjihgfe","zyxwvutsrqponmlkjihgfed","zyxwvutsrqponmlkjihgfedc","zyxwvutsrqponmlkjihgfedcb",
  117. "zyxwvutsrqponmlkjihgfedcba"};
  118. char *result_2[] = {"0=z","1=zy","1=zyx","2=zyxw","3=zyxwv","5=zyxwvu","8=zyxwvut","13=zyxwvuts","21=zyxwvutsr","34=zyxwvutsrq",
  119. "55=zyxwvutsrqp","89=zyxwvutsrqpo","144=zyxwvutsrqpon","233=zyxwvutsrqponm","377=zyxwvutsrqponml",
  120. "610=zyxwvutsrqponmlk","987=zyxwvutsrqponmlkj","1597=zyxwvutsrqponmlkji","2584=zyxwvutsrqponmlkjih",
  121. "4181=zyxwvutsrqponmlkjihg","6765=zyxwvutsrqponmlkjihgf","10946=zyxwvutsrqponmlkjihgfe",
  122. "17711=zyxwvutsrqponmlkjihgfed","28657=zyxwvutsrqponmlkjihgfedc","46368=zyxwvutsrqponmlkjihgfedcb",
  123. "75025=zyxwvutsrqponmlkjihgfedcba"};
  124. for(int i=0;i<26;++i){
  125. TEST_ASSERT_EQUAL_STRING(result_2[i],generateCheckString(numbers_2[i],*(strings_2+i)));
  126. }
  127. /*test block 3*/
  128. srand(time(0));
  129. int random_number=0;
  130. char *random_numbers_strings[20];
  131. int random_numbers[20];
  132. for(int i=0;i<20;++i){
  133. random_number = (rand() % 100) + 1;
  134. random_numbers_strings[i] = to_string(random_number);
  135. random_numbers[i] = random_number;
  136. }
  137. char *strings_3[] = {"tree","plant","tea","programming","assembler","unix","BSD","snow","mountain","table","wood","forest", "calculator","book","light","keyboard","old","paper","pencil","voltage"};
  138. char *result_3[20];
  139. for(int i=0;i<20;++i){
  140. random_numbers_strings[i] = strcat(random_numbers_strings[i],"=");
  141. result_3[i] = strcat(random_numbers_strings[i],strings_3[i]);
  142. printf("%s\n",result_3[i]);
  143. }
  144. for(int i=0;i<20;++i){
  145. TEST_ASSERT_EQUAL_STRING(result_3[i],generateCheckString(random_numbers[i],strings_3[i]));
  146. }
  147. }