main.cpp 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405
  1. /*
  2. * Copyright (c) 2017-2018,2020 The Linux Foundation. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions are
  6. * met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above
  10. * copyright notice, this list of conditions and the following
  11. * disclaimer in the documentation and/or other materials provided
  12. * with the distribution.
  13. * * Neither the name of The Linux Foundation nor the names of its
  14. * contributors may be used to endorse or promote products derived
  15. * from this software without specific prior written permission.
  16. *
  17. * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
  18. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  19. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
  20. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
  21. * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  22. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  23. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  24. * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  25. * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
  26. * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
  27. * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28. */
  29. #include <getopt.h>
  30. #include "Logger.h"
  31. #include "TestManager.h"
  32. #include "TestsUtils.h"
  33. #include <stdio.h>
  34. #include <iostream>
  35. #include <set>
  36. ///////////////////////////////////////////////////////////
  37. Logger g_Logger(LOG_ERROR);
  38. #define CHOOSER_MODE "--chooser"
  39. #define SHOW_TEST_FLAG "--show_tests"
  40. #define SHOW_SUIT_FLAG "--show_suites"
  41. #define RUN_TEST_FLAG "--test"
  42. #define RUN_SUIT_FLAG "--suite"
  43. string sFormat = "ip_accelerator <control_flag> <suit/name>, ..., <suit/name>\n"
  44. "contorl_flag = " RUN_TEST_FLAG " or " RUN_SUIT_FLAG "\n"
  45. "ip_accelerator " SHOW_TEST_FLAG "\n"
  46. "ip_accelerator " SHOW_SUIT_FLAG "\n"
  47. "or ip_accelerator --chooser "
  48. "for menu chooser interface\n";
  49. #define MAX_SUITES 17
  50. #undef strcasesame
  51. #define strcasesame(x, y) \
  52. (! strcasecmp((x), (y)))
  53. #undef legal_nat_mem_type
  54. #define legal_nat_mem_type(mt) \
  55. ( strcasesame(mt, "DDR") || \
  56. strcasesame(mt, "SRAM") || \
  57. strcasesame(mt, "HYBRID") )
  58. TestManager *testmanager = NULL;
  59. enum ipa_test_type{
  60. TEST = 1,
  61. SUITE,
  62. EXIT,
  63. MAX_TYPE
  64. };
  65. const char *ipa_hw_type_name[] = {
  66. "None",
  67. "1.0",
  68. "1.1",
  69. "2.0",
  70. "2.1",
  71. "2.5/2.6",
  72. "2.6L",
  73. "Unused",
  74. "Unused",
  75. "Unused",
  76. "3.0",
  77. "3.1",
  78. "3.5",
  79. "3.5.1",
  80. "4.0",
  81. "4.1",
  82. "4.2",
  83. "4.5",
  84. "4.7",
  85. "4.9",
  86. "4.11",
  87. "5.0",
  88. "5.1",
  89. "5.5",
  90. "MAX"
  91. };
  92. void BuildRegressionTestSuite()
  93. {
  94. TestBase *test;
  95. for (unsigned int i = 0; i < testmanager->m_testList.size(); i++) {
  96. test = testmanager->m_testList[i];
  97. if (test->m_runInRegression) {
  98. test->m_testSuiteName.push_back("Regression");
  99. }
  100. }
  101. }
  102. ///////////////////////////////////////////////////////////
  103. void showTests()
  104. {
  105. TestBase *test = testmanager->m_testList[0];
  106. for (unsigned i = 0; i < testmanager->m_testList.size(); i++) {
  107. test = testmanager->m_testList[i];
  108. string name = test->m_name, index = test->m_testSuiteName[0];
  109. printf("%d) %s (part of %s suite" ,i+1, name.c_str(), index.c_str());
  110. for (unsigned j = 0; j < test->m_testSuiteName.size(); ++j) {
  111. if ( test->m_testSuiteName[j] == index)
  112. continue;
  113. printf(", %s suite",
  114. test->m_testSuiteName[j].c_str());
  115. index = test->m_testSuiteName[j];
  116. }
  117. printf("), (%s <= HW Version <= %s)\n",
  118. ipa_hw_type_name[test->m_minIPAHwType],
  119. ipa_hw_type_name[test->m_maxIPAHwType]);
  120. }
  121. // Example:
  122. // 15) DmaModeMBIMggregationLoopTest (part of DmaMbim16Agg suite), (1.0 <= HW Version <= 2.1)
  123. }
  124. void showSuits()
  125. {
  126. TestBase *test;
  127. std::set<string> suiteSet;
  128. int suiteIndex = 1;
  129. test = testmanager->m_testList[0];
  130. for (unsigned i = 0; i < testmanager->m_testList.size(); i++) {
  131. test = testmanager->m_testList[i];
  132. for (unsigned j = 0; j < test->m_testSuiteName.size() ; j++)
  133. suiteSet.insert(test->m_testSuiteName[j]);
  134. }
  135. for (std::set<string>::iterator i = suiteSet.begin();
  136. i != suiteSet.end(); suiteIndex++) {
  137. printf("%d) %s\n", suiteIndex, (*i).c_str());
  138. ++i;
  139. }
  140. }
  141. void preparTests(int argc, char* argv[],
  142. vector<string>& list)
  143. {
  144. for (int i = 2; i < argc; i++)
  145. list.push_back(argv[i]);
  146. }
  147. const char* getSuite(int suite_num) {
  148. int count = 0, suiteIndex = 1;
  149. string result = "error";
  150. TestBase *test = testmanager->m_testList[0];
  151. set<string> suiteSet;
  152. if (testmanager->m_testList.size() < 1)
  153. return NULL;
  154. if (count == suite_num)
  155. return testmanager->m_testList[0]->m_testSuiteName[0].c_str();
  156. for (unsigned i = 0; i < testmanager->m_testList.size(); i++) {
  157. test = testmanager->m_testList[i];
  158. for (unsigned j = 0; j < test->m_testSuiteName.size() ; j++)
  159. suiteSet.insert(test->m_testSuiteName[j]);
  160. }
  161. for (std::set<string>::iterator i = suiteSet.begin();
  162. i != suiteSet.end(); suiteIndex++) {
  163. printf("%d) %s\n", suiteIndex, (*i).c_str());
  164. if (suiteIndex == suite_num)
  165. return (*i).c_str();
  166. ++i;
  167. }
  168. return NULL;
  169. }
  170. int chooserMode() {
  171. vector<string> testSuiteList;
  172. vector<string> testNameList;
  173. unsigned int test_num;
  174. int suite_num;
  175. int type;
  176. TestBase *test;
  177. const char* res;
  178. int result = 0;
  179. char input_str[4];
  180. char* temp;
  181. printf("Welcome to the ip_accelerator\nChoose an option:\n");
  182. printf("1) Run tests\n2) Run suites\n3) Exit\nChoose an option: ");
  183. temp = fgets(input_str, sizeof(input_str), stdin);
  184. if (!temp) {
  185. printf("Error: fgets returned nullptr !!");
  186. return -1;
  187. }
  188. type = atoi(input_str);
  189. switch((enum ipa_test_type)type) {
  190. case TEST:
  191. BuildRegressionTestSuite();
  192. showTests();
  193. printf("Choose which test you wish to run: \n");
  194. fflush(stdin);
  195. temp = fgets(input_str, sizeof(input_str), stdin);
  196. if (!temp) {
  197. printf("Error: fgets returned nullptr !!");
  198. return -1;
  199. }
  200. test_num = atoi(input_str);
  201. if ( test_num > testmanager->m_testList.size()) {
  202. printf("Invalid test number. Try again\n");
  203. result = -1;
  204. break;
  205. }
  206. test = testmanager->m_testList[test_num-1];
  207. printf("Running Test %s\n",
  208. test->m_name.
  209. c_str());
  210. testNameList.push_back(test->m_name.c_str());
  211. BuildRegressionTestSuite();
  212. testmanager->Run(testSuiteList, testNameList);
  213. testNameList.clear();
  214. break;
  215. case SUITE:
  216. BuildRegressionTestSuite();
  217. showSuits();
  218. printf("Choose which suite you wish to run: \n");
  219. fflush(stdin);
  220. temp = fgets(input_str, sizeof(input_str), stdin);
  221. if (!temp) {
  222. printf("Error: fgets returned nullptr !!");
  223. return -1;
  224. }
  225. suite_num = atoi(input_str);
  226. if (suite_num < 0 || suite_num > MAX_SUITES) {
  227. printf("Invalid test number. Try again\n");
  228. result = -1;
  229. break;
  230. }
  231. res = getSuite(suite_num);
  232. if (!res) {
  233. printf("Error in getSuite. Exiting\n");
  234. result = -1;
  235. break;
  236. }
  237. testSuiteList.push_back(res);
  238. testmanager->Run(testSuiteList, testNameList);
  239. testSuiteList.clear();
  240. break;
  241. default:
  242. printf("Exiting\n");
  243. break;
  244. }
  245. return result;
  246. }
  247. int scriptMode(int argc, char* argv[]) {
  248. vector<string> testSuiteList;
  249. vector<string> testNameList;
  250. string sControlFlag;
  251. if (argc < 2) {
  252. printf("please use correct format:\n%s", sFormat.c_str());
  253. return -1;
  254. }
  255. sControlFlag = argv[1];
  256. if (sControlFlag.find("--") == string::npos) {
  257. printf("please use correct format:\n%s", sFormat.c_str());
  258. return -1;
  259. }
  260. BuildRegressionTestSuite();
  261. if (sControlFlag.compare(SHOW_TEST_FLAG) == 0) {
  262. showTests();
  263. return 0;
  264. } else if (sControlFlag.compare(SHOW_SUIT_FLAG) == 0) {
  265. showSuits();
  266. return 0;
  267. }
  268. if (sControlFlag.compare(RUN_TEST_FLAG) == 0) {
  269. preparTests(argc, argv, testNameList);
  270. } else if (sControlFlag.compare(RUN_SUIT_FLAG) == 0) {
  271. preparTests(argc, argv, testSuiteList);
  272. } else {
  273. printf("please use correct format:\n%s", sFormat.c_str());
  274. return -1;
  275. }
  276. testmanager->Run(testSuiteList, testNameList);
  277. return 0;
  278. }
  279. int main(int argc, char* argv[])
  280. {
  281. string nat_mem_type = DFLT_NAT_MEM_TYPE;
  282. int c, result = 0, what = 0;
  283. int opt_idx = 0;
  284. struct option opts[] = {
  285. /* These options set a flag. */
  286. {"chooser", no_argument, &what, 1},
  287. {"show_tests", no_argument, &what, 2},
  288. {"show_suites", no_argument, &what, 3},
  289. {"test", no_argument, &what, 4},
  290. {"suite", no_argument, &what, 5},
  291. {"mem", required_argument, 0, 'm'},
  292. {0, 0, 0, 0}
  293. };
  294. if (argc <= 1) {
  295. printf("please use correct format:\n%s", sFormat.c_str());
  296. return -1;
  297. }
  298. while ( (c = getopt_long(argc, argv, "", opts, &opt_idx)) != -1 )
  299. {
  300. switch ( c )
  301. {
  302. case 0:
  303. break;
  304. case 'm':
  305. if ( legal_nat_mem_type(optarg) )
  306. {
  307. nat_mem_type = optarg;
  308. }
  309. else
  310. {
  311. fprintf(stderr, "Illegal: --mem %s\n", optarg);
  312. exit(1);
  313. }
  314. break;
  315. default:
  316. fprintf(stderr, "Illegal command line argument passed\n");
  317. printf("please use correct format:\n%s", sFormat.c_str());
  318. exit(1);
  319. }
  320. }
  321. if ( what == 0 ) {
  322. printf("please use correct format:\n%s", sFormat.c_str());
  323. return -1;
  324. }
  325. argc = 2;
  326. switch ( what )
  327. {
  328. case 1:
  329. argv[1] = (char*) CHOOSER_MODE;
  330. break;
  331. case 2:
  332. argv[1] = (char*) SHOW_TEST_FLAG;
  333. break;
  334. case 3:
  335. argv[1] = (char*) SHOW_SUIT_FLAG;
  336. break;
  337. case 4:
  338. argv[1] = (char*) RUN_TEST_FLAG;
  339. break;
  340. case 5:
  341. argv[1] = (char*) RUN_SUIT_FLAG;
  342. break;
  343. default:
  344. printf("please use correct format:\n%s", sFormat.c_str());
  345. exit(1);
  346. }
  347. testmanager = TestManager::GetInstance(nat_mem_type.c_str());
  348. string sControlFlag = argv[1];
  349. if (sControlFlag.compare(CHOOSER_MODE) == 0) {
  350. result = chooserMode();
  351. } else {
  352. result = scriptMode(argc, argv);
  353. }
  354. return result;
  355. }//main
  356. ////////////////////////////////////////////////////////////////////