unit-test-client.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694
  1. /*
  2. * Copyright © 2008-2010 Stéphane Raimbault <stephane.raimbault@gmail.com>
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #include <stdio.h>
  18. #include <unistd.h>
  19. #include <string.h>
  20. #include <stdlib.h>
  21. #include <errno.h>
  22. #include <modbus.h>
  23. #include "unit-test.h"
  24. enum {
  25. TCP,
  26. TCP_PI,
  27. RTU
  28. };
  29. int main(int argc, char *argv[])
  30. {
  31. uint8_t *tab_rp_bits;
  32. uint16_t *tab_rp_registers;
  33. uint16_t *tab_rp_registers_bad;
  34. modbus_t *ctx;
  35. int i;
  36. uint8_t value;
  37. int nb_points;
  38. int rc;
  39. float real;
  40. uint32_t ireal;
  41. struct timeval old_response_timeout;
  42. struct timeval response_timeout;
  43. int use_backend;
  44. if (argc > 1) {
  45. if (strcmp(argv[1], "tcp") == 0) {
  46. use_backend = TCP;
  47. } else if (strcmp(argv[1], "tcppi") == 0) {
  48. use_backend = TCP_PI;
  49. } else if (strcmp(argv[1], "rtu") == 0) {
  50. use_backend = RTU;
  51. } else {
  52. printf("Usage:\n %s [tcp|tcppi|rtu] - Modbus client for unit testing\n\n", argv[0]);
  53. exit(1);
  54. }
  55. } else {
  56. /* By default */
  57. use_backend = TCP;
  58. }
  59. if (use_backend == TCP) {
  60. ctx = modbus_new_tcp("127.0.0.1", 1502);
  61. } else if (use_backend == TCP_PI) {
  62. ctx = modbus_new_tcp_pi("::1", "1502");
  63. } else {
  64. ctx = modbus_new_rtu("/dev/ttyUSB1", 115200, 'N', 8, 1);
  65. }
  66. if (ctx == NULL) {
  67. fprintf(stderr, "Unable to allocate libmodbus context\n");
  68. return -1;
  69. }
  70. modbus_set_debug(ctx, TRUE);
  71. modbus_set_error_recovery(ctx,
  72. MODBUS_ERROR_RECOVERY_LINK |
  73. MODBUS_ERROR_RECOVERY_PROTOCOL);
  74. if (use_backend == RTU) {
  75. modbus_set_slave(ctx, SERVER_ID);
  76. }
  77. if (modbus_connect(ctx) == -1) {
  78. fprintf(stderr, "Connection failed: %s\n",
  79. modbus_strerror(errno));
  80. modbus_free(ctx);
  81. return -1;
  82. }
  83. /* Allocate and initialize the memory to store the bits */
  84. nb_points = (UT_BITS_NB > UT_INPUT_BITS_NB) ? UT_BITS_NB : UT_INPUT_BITS_NB;
  85. tab_rp_bits = (uint8_t *) malloc(nb_points * sizeof(uint8_t));
  86. memset(tab_rp_bits, 0, nb_points * sizeof(uint8_t));
  87. /* Allocate and initialize the memory to store the registers */
  88. nb_points = (UT_REGISTERS_NB > UT_INPUT_REGISTERS_NB) ?
  89. UT_REGISTERS_NB : UT_INPUT_REGISTERS_NB;
  90. tab_rp_registers = (uint16_t *) malloc(nb_points * sizeof(uint16_t));
  91. memset(tab_rp_registers, 0, nb_points * sizeof(uint16_t));
  92. printf("** UNIT TESTING **\n");
  93. printf("\nTEST WRITE/READ:\n");
  94. /** COIL BITS **/
  95. /* Single */
  96. rc = modbus_write_bit(ctx, UT_BITS_ADDRESS, ON);
  97. printf("1/2 modbus_write_bit: ");
  98. if (rc == 1) {
  99. printf("OK\n");
  100. } else {
  101. printf("FAILED\n");
  102. goto close;
  103. }
  104. rc = modbus_read_bits(ctx, UT_BITS_ADDRESS, 1, tab_rp_bits);
  105. printf("2/2 modbus_read_bits: ");
  106. if (rc != 1) {
  107. printf("FAILED (nb points %d)\n", rc);
  108. goto close;
  109. }
  110. if (tab_rp_bits[0] != ON) {
  111. printf("FAILED (%0X = != %0X)\n", tab_rp_bits[0], ON);
  112. goto close;
  113. }
  114. printf("OK\n");
  115. /* End single */
  116. /* Multiple bits */
  117. {
  118. uint8_t tab_value[UT_BITS_NB];
  119. modbus_set_bits_from_bytes(tab_value, 0, UT_BITS_NB, UT_BITS_TAB);
  120. rc = modbus_write_bits(ctx, UT_BITS_ADDRESS,
  121. UT_BITS_NB, tab_value);
  122. printf("1/2 modbus_write_bits: ");
  123. if (rc == UT_BITS_NB) {
  124. printf("OK\n");
  125. } else {
  126. printf("FAILED\n");
  127. goto close;
  128. }
  129. }
  130. rc = modbus_read_bits(ctx, UT_BITS_ADDRESS, UT_BITS_NB, tab_rp_bits);
  131. printf("2/2 modbus_read_bits: ");
  132. if (rc != UT_BITS_NB) {
  133. printf("FAILED (nb points %d)\n", rc);
  134. goto close;
  135. }
  136. i = 0;
  137. nb_points = UT_BITS_NB;
  138. while (nb_points > 0) {
  139. int nb_bits = (nb_points > 8) ? 8 : nb_points;
  140. value = modbus_get_byte_from_bits(tab_rp_bits, i*8, nb_bits);
  141. if (value != UT_BITS_TAB[i]) {
  142. printf("FAILED (%0X != %0X)\n", value, UT_BITS_TAB[i]);
  143. goto close;
  144. }
  145. nb_points -= nb_bits;
  146. i++;
  147. }
  148. printf("OK\n");
  149. /* End of multiple bits */
  150. /** DISCRETE INPUTS **/
  151. rc = modbus_read_input_bits(ctx, UT_INPUT_BITS_ADDRESS,
  152. UT_INPUT_BITS_NB, tab_rp_bits);
  153. printf("1/1 modbus_read_input_bits: ");
  154. if (rc != UT_INPUT_BITS_NB) {
  155. printf("FAILED (nb points %d)\n", rc);
  156. goto close;
  157. }
  158. i = 0;
  159. nb_points = UT_INPUT_BITS_NB;
  160. while (nb_points > 0) {
  161. int nb_bits = (nb_points > 8) ? 8 : nb_points;
  162. value = modbus_get_byte_from_bits(tab_rp_bits, i*8, nb_bits);
  163. if (value != UT_INPUT_BITS_TAB[i]) {
  164. printf("FAILED (%0X != %0X)\n", value, UT_INPUT_BITS_TAB[i]);
  165. goto close;
  166. }
  167. nb_points -= nb_bits;
  168. i++;
  169. }
  170. printf("OK\n");
  171. /** HOLDING REGISTERS **/
  172. /* Single register */
  173. rc = modbus_write_register(ctx, UT_REGISTERS_ADDRESS, 0x1234);
  174. printf("1/2 modbus_write_register: ");
  175. if (rc == 1) {
  176. printf("OK\n");
  177. } else {
  178. printf("FAILED\n");
  179. goto close;
  180. }
  181. rc = modbus_read_registers(ctx, UT_REGISTERS_ADDRESS,
  182. 1, tab_rp_registers);
  183. printf("2/2 modbus_read_registers: ");
  184. if (rc != 1) {
  185. printf("FAILED (nb points %d)\n", rc);
  186. goto close;
  187. }
  188. if (tab_rp_registers[0] != 0x1234) {
  189. printf("FAILED (%0X != %0X)\n",
  190. tab_rp_registers[0], 0x1234);
  191. goto close;
  192. }
  193. printf("OK\n");
  194. /* End of single register */
  195. /* Many registers */
  196. rc = modbus_write_registers(ctx, UT_REGISTERS_ADDRESS,
  197. UT_REGISTERS_NB, UT_REGISTERS_TAB);
  198. printf("1/5 modbus_write_registers: ");
  199. if (rc == UT_REGISTERS_NB) {
  200. printf("OK\n");
  201. } else {
  202. printf("FAILED\n");
  203. goto close;
  204. }
  205. rc = modbus_read_registers(ctx, UT_REGISTERS_ADDRESS,
  206. UT_REGISTERS_NB, tab_rp_registers);
  207. printf("2/5 modbus_read_registers: ");
  208. if (rc != UT_REGISTERS_NB) {
  209. printf("FAILED (nb points %d)\n", rc);
  210. goto close;
  211. }
  212. for (i=0; i < UT_REGISTERS_NB; i++) {
  213. if (tab_rp_registers[i] != UT_REGISTERS_TAB[i]) {
  214. printf("FAILED (%0X != %0X)\n",
  215. tab_rp_registers[i],
  216. UT_REGISTERS_TAB[i]);
  217. goto close;
  218. }
  219. }
  220. printf("OK\n");
  221. rc = modbus_read_registers(ctx, UT_REGISTERS_ADDRESS,
  222. 0, tab_rp_registers);
  223. printf("3/5 modbus_read_registers (0): ");
  224. if (rc != 0) {
  225. printf("FAILED (nb points %d)\n", rc);
  226. goto close;
  227. }
  228. printf("OK\n");
  229. nb_points = (UT_REGISTERS_NB >
  230. UT_INPUT_REGISTERS_NB) ?
  231. UT_REGISTERS_NB : UT_INPUT_REGISTERS_NB;
  232. memset(tab_rp_registers, 0, nb_points * sizeof(uint16_t));
  233. /* Write registers to zero from tab_rp_registers and store read registers
  234. into tab_rp_registers. So the read registers must set to 0, except the
  235. first one because there is an offset of 1 register on write. */
  236. rc = modbus_write_and_read_registers(ctx,
  237. UT_REGISTERS_ADDRESS + 1, UT_REGISTERS_NB - 1,
  238. tab_rp_registers,
  239. UT_REGISTERS_ADDRESS,
  240. UT_REGISTERS_NB,
  241. tab_rp_registers);
  242. printf("4/5 modbus_write_and_read_registers: ");
  243. if (rc != UT_REGISTERS_NB) {
  244. printf("FAILED (nb points %d != %d)\n", rc, UT_REGISTERS_NB);
  245. goto close;
  246. }
  247. if (tab_rp_registers[0] != UT_REGISTERS_TAB[0]) {
  248. printf("FAILED (%0X != %0X)\n",
  249. tab_rp_registers[0], UT_REGISTERS_TAB[0]);
  250. }
  251. for (i=1; i < UT_REGISTERS_NB; i++) {
  252. if (tab_rp_registers[i] != 0) {
  253. printf("FAILED (%0X != %0X)\n",
  254. tab_rp_registers[i], 0);
  255. goto close;
  256. }
  257. }
  258. printf("OK\n");
  259. /* End of many registers */
  260. /** INPUT REGISTERS **/
  261. rc = modbus_read_input_registers(ctx, UT_INPUT_REGISTERS_ADDRESS,
  262. UT_INPUT_REGISTERS_NB,
  263. tab_rp_registers);
  264. printf("1/1 modbus_read_input_registers: ");
  265. if (rc != UT_INPUT_REGISTERS_NB) {
  266. printf("FAILED (nb points %d)\n", rc);
  267. goto close;
  268. }
  269. for (i=0; i < UT_INPUT_REGISTERS_NB; i++) {
  270. if (tab_rp_registers[i] != UT_INPUT_REGISTERS_TAB[i]) {
  271. printf("FAILED (%0X != %0X)\n",
  272. tab_rp_registers[i], UT_INPUT_REGISTERS_TAB[i]);
  273. goto close;
  274. }
  275. }
  276. printf("OK\n");
  277. printf("\nTEST FLOATS\n");
  278. /** FLOAT **/
  279. printf("1/2 Set float: ");
  280. modbus_set_float(UT_REAL, tab_rp_registers);
  281. if (tab_rp_registers[1] == (UT_IREAL >> 16) &&
  282. tab_rp_registers[0] == (UT_IREAL & 0xFFFF)) {
  283. printf("OK\n");
  284. } else {
  285. /* Avoid *((uint32_t *)tab_rp_registers)
  286. * https://github.com/stephane/libmodbus/pull/104 */
  287. ireal = (uint32_t) tab_rp_registers[0] & 0xFFFF;
  288. ireal |= (uint32_t) tab_rp_registers[1] << 16;
  289. printf("FAILED (%x != %x)\n", ireal, UT_IREAL);
  290. goto close;
  291. }
  292. printf("2/2 Get float: ");
  293. real = modbus_get_float(tab_rp_registers);
  294. if (real == UT_REAL) {
  295. printf("OK\n");
  296. } else {
  297. printf("FAILED (%f != %f)\n", real, UT_REAL);
  298. goto close;
  299. }
  300. printf("\nAt this point, error messages doesn't mean the test has failed\n");
  301. /** ILLEGAL DATA ADDRESS **/
  302. printf("\nTEST ILLEGAL DATA ADDRESS:\n");
  303. /* The mapping begins at 0 and ends at address + nb_points so
  304. * the addresses are not valid. */
  305. rc = modbus_read_bits(ctx, UT_BITS_ADDRESS,
  306. UT_BITS_NB + 1, tab_rp_bits);
  307. printf("* modbus_read_bits: ");
  308. if (rc == -1 && errno == EMBXILADD) {
  309. printf("OK\n");
  310. } else {
  311. printf("FAILED\n");
  312. goto close;
  313. }
  314. rc = modbus_read_input_bits(ctx, UT_INPUT_BITS_ADDRESS,
  315. UT_INPUT_BITS_NB + 1, tab_rp_bits);
  316. printf("* modbus_read_input_bits: ");
  317. if (rc == -1 && errno == EMBXILADD)
  318. printf("OK\n");
  319. else {
  320. printf("FAILED\n");
  321. goto close;
  322. }
  323. rc = modbus_read_registers(ctx, UT_REGISTERS_ADDRESS,
  324. UT_REGISTERS_NB + 1, tab_rp_registers);
  325. printf("* modbus_read_registers: ");
  326. if (rc == -1 && errno == EMBXILADD)
  327. printf("OK\n");
  328. else {
  329. printf("FAILED\n");
  330. goto close;
  331. }
  332. rc = modbus_read_input_registers(ctx, UT_INPUT_REGISTERS_ADDRESS,
  333. UT_INPUT_REGISTERS_NB + 1,
  334. tab_rp_registers);
  335. printf("* modbus_read_input_registers: ");
  336. if (rc == -1 && errno == EMBXILADD)
  337. printf("OK\n");
  338. else {
  339. printf("FAILED\n");
  340. goto close;
  341. }
  342. rc = modbus_write_bit(ctx, UT_BITS_ADDRESS + UT_BITS_NB, ON);
  343. printf("* modbus_write_bit: ");
  344. if (rc == -1 && errno == EMBXILADD) {
  345. printf("OK\n");
  346. } else {
  347. printf("FAILED\n");
  348. goto close;
  349. }
  350. rc = modbus_write_bits(ctx, UT_BITS_ADDRESS + UT_BITS_NB,
  351. UT_BITS_NB, tab_rp_bits);
  352. printf("* modbus_write_coils: ");
  353. if (rc == -1 && errno == EMBXILADD) {
  354. printf("OK\n");
  355. } else {
  356. printf("FAILED\n");
  357. goto close;
  358. }
  359. rc = modbus_write_registers(ctx, UT_REGISTERS_ADDRESS + UT_REGISTERS_NB,
  360. UT_REGISTERS_NB, tab_rp_registers);
  361. printf("* modbus_write_registers: ");
  362. if (rc == -1 && errno == EMBXILADD) {
  363. printf("OK\n");
  364. } else {
  365. printf("FAILED\n");
  366. goto close;
  367. }
  368. /** TOO MANY DATA **/
  369. printf("\nTEST TOO MANY DATA ERROR:\n");
  370. rc = modbus_read_bits(ctx, UT_BITS_ADDRESS,
  371. MODBUS_MAX_READ_BITS + 1, tab_rp_bits);
  372. printf("* modbus_read_bits: ");
  373. if (rc == -1 && errno == EMBMDATA) {
  374. printf("OK\n");
  375. } else {
  376. printf("FAILED\n");
  377. goto close;
  378. }
  379. rc = modbus_read_input_bits(ctx, UT_INPUT_BITS_ADDRESS,
  380. MODBUS_MAX_READ_BITS + 1, tab_rp_bits);
  381. printf("* modbus_read_input_bits: ");
  382. if (rc == -1 && errno == EMBMDATA) {
  383. printf("OK\n");
  384. } else {
  385. printf("FAILED\n");
  386. goto close;
  387. }
  388. rc = modbus_read_registers(ctx, UT_REGISTERS_ADDRESS,
  389. MODBUS_MAX_READ_REGISTERS + 1,
  390. tab_rp_registers);
  391. printf("* modbus_read_registers: ");
  392. if (rc == -1 && errno == EMBMDATA) {
  393. printf("OK\n");
  394. } else {
  395. printf("FAILED\n");
  396. goto close;
  397. }
  398. rc = modbus_read_input_registers(ctx, UT_INPUT_REGISTERS_ADDRESS,
  399. MODBUS_MAX_READ_REGISTERS + 1,
  400. tab_rp_registers);
  401. printf("* modbus_read_input_registers: ");
  402. if (rc == -1 && errno == EMBMDATA) {
  403. printf("OK\n");
  404. } else {
  405. printf("FAILED\n");
  406. goto close;
  407. }
  408. rc = modbus_write_bits(ctx, UT_BITS_ADDRESS,
  409. MODBUS_MAX_WRITE_BITS + 1, tab_rp_bits);
  410. printf("* modbus_write_bits: ");
  411. if (rc == -1 && errno == EMBMDATA) {
  412. printf("OK\n");
  413. } else {
  414. goto close;
  415. printf("FAILED\n");
  416. }
  417. rc = modbus_write_registers(ctx, UT_REGISTERS_ADDRESS,
  418. MODBUS_MAX_WRITE_REGISTERS + 1,
  419. tab_rp_registers);
  420. printf("* modbus_write_registers: ");
  421. if (rc == -1 && errno == EMBMDATA) {
  422. printf("OK\n");
  423. } else {
  424. printf("FAILED\n");
  425. goto close;
  426. }
  427. /** SLAVE REPLY **/
  428. printf("\nTEST SLAVE REPLY:\n");
  429. modbus_set_slave(ctx, INVALID_SERVER_ID);
  430. rc = modbus_read_registers(ctx, UT_REGISTERS_ADDRESS,
  431. UT_REGISTERS_NB, tab_rp_registers);
  432. if (use_backend == RTU) {
  433. const int RAW_REQ_LENGTH = 6;
  434. uint8_t raw_req[] = { INVALID_SERVER_ID, 0x03, 0x00, 0x01, 0xFF, 0xFF };
  435. uint8_t rsp[MODBUS_TCP_MAX_ADU_LENGTH];
  436. /* No response in RTU mode */
  437. printf("1/4-A No response from slave %d: ", INVALID_SERVER_ID);
  438. if (rc == -1 && errno == ETIMEDOUT) {
  439. printf("OK\n");
  440. } else {
  441. printf("FAILED\n");
  442. goto close;
  443. }
  444. /* Send an invalid query with a wrong slave ID */
  445. modbus_send_raw_request(ctx, raw_req,
  446. RAW_REQ_LENGTH * sizeof(uint8_t));
  447. rc = modbus_receive_confirmation(ctx, rsp);
  448. printf("1/4-B No response from slave %d with invalid request: ",
  449. INVALID_SERVER_ID);
  450. if (rc == -1 && errno == ETIMEDOUT) {
  451. printf("OK\n");
  452. } else {
  453. printf("FAILED (%d)\n", rc);
  454. goto close;
  455. }
  456. } else {
  457. /* Response in TCP mode */
  458. printf("1/4 Response from slave %d: ", 18);
  459. if (rc == UT_REGISTERS_NB) {
  460. printf("OK\n");
  461. } else {
  462. printf("FAILED\n");
  463. goto close;
  464. }
  465. }
  466. rc = modbus_set_slave(ctx, MODBUS_BROADCAST_ADDRESS);
  467. if (rc == -1) {
  468. printf("Invalid broacast address\n");
  469. goto close;
  470. }
  471. rc = modbus_read_registers(ctx, UT_REGISTERS_ADDRESS,
  472. UT_REGISTERS_NB, tab_rp_registers);
  473. printf("2/4 Reply after a broadcast query: ");
  474. if (rc == UT_REGISTERS_NB) {
  475. printf("OK\n");
  476. } else {
  477. printf("FAILED\n");
  478. goto close;
  479. }
  480. /* Restore slave */
  481. if (use_backend == RTU) {
  482. modbus_set_slave(ctx, SERVER_ID);
  483. } else {
  484. modbus_set_slave(ctx, MODBUS_TCP_SLAVE);
  485. }
  486. printf("3/4 Report slave ID: \n");
  487. /* tab_rp_bits is used to store bytes */
  488. rc = modbus_report_slave_id(ctx, tab_rp_bits);
  489. if (rc == -1) {
  490. printf("FAILED\n");
  491. goto close;
  492. }
  493. /* Slave ID is an arbitraty number for libmodbus */
  494. if (rc > 0) {
  495. printf("OK Slave ID is %d\n", tab_rp_bits[0]);
  496. } else {
  497. printf("FAILED\n");
  498. goto close;
  499. }
  500. /* Run status indicator */
  501. if (rc > 1 && tab_rp_bits[1] == 0xFF) {
  502. printf("OK Run Status Indicator is %s\n", tab_rp_bits[1] ? "ON" : "OFF");
  503. } else {
  504. printf("FAILED\n");
  505. goto close;
  506. }
  507. /* Print additional data as string */
  508. if (rc > 2) {
  509. printf("Additional data: ");
  510. for (i=2; i < rc; i++) {
  511. printf("%c", tab_rp_bits[i]);
  512. }
  513. printf("\n");
  514. }
  515. /* Save original timeout */
  516. modbus_get_response_timeout(ctx, &old_response_timeout);
  517. /* Define a new and too short timeout */
  518. response_timeout.tv_sec = 0;
  519. response_timeout.tv_usec = 0;
  520. modbus_set_response_timeout(ctx, &response_timeout);
  521. rc = modbus_read_registers(ctx, UT_REGISTERS_ADDRESS,
  522. UT_REGISTERS_NB, tab_rp_registers);
  523. printf("4/4 Too short timeout: ");
  524. if (rc == -1 && errno == ETIMEDOUT) {
  525. printf("OK\n");
  526. } else {
  527. printf("FAILED (can fail on slow systems or Windows)\n");
  528. }
  529. /* Restore original timeout */
  530. modbus_set_response_timeout(ctx, &old_response_timeout);
  531. /* A wait and flush operation is done by the error recovery code of
  532. * libmodbus */
  533. /** BAD RESPONSE **/
  534. printf("\nTEST BAD RESPONSE ERROR:\n");
  535. /* Allocate only the required space */
  536. tab_rp_registers_bad = (uint16_t *) malloc(
  537. UT_REGISTERS_NB_SPECIAL * sizeof(uint16_t));
  538. rc = modbus_read_registers(ctx, UT_REGISTERS_ADDRESS,
  539. UT_REGISTERS_NB_SPECIAL, tab_rp_registers_bad);
  540. printf("* modbus_read_registers: ");
  541. if (rc == -1 && errno == EMBBADDATA) {
  542. printf("OK\n");
  543. } else {
  544. printf("FAILED\n");
  545. goto close;
  546. }
  547. free(tab_rp_registers_bad);
  548. /** MANUAL EXCEPTION **/
  549. printf("\nTEST MANUAL EXCEPTION:\n");
  550. rc = modbus_read_registers(ctx, UT_REGISTERS_ADDRESS_SPECIAL,
  551. UT_REGISTERS_NB, tab_rp_registers);
  552. printf("* modbus_read_registers at special address: ");
  553. if (rc == -1 && errno == EMBXSBUSY) {
  554. printf("OK\n");
  555. } else {
  556. printf("FAILED\n");
  557. goto close;
  558. }
  559. /** RAW REQUEST */
  560. printf("\nTEST RAW REQUEST:\n");
  561. {
  562. const int RAW_REQ_LENGTH = 6;
  563. uint8_t raw_req[] = { (use_backend == RTU) ? SERVER_ID : 0xFF,
  564. 0x03, 0x00, 0x01, 0x0, 0x05 };
  565. int req_length;
  566. uint8_t rsp[MODBUS_TCP_MAX_ADU_LENGTH];
  567. req_length = modbus_send_raw_request(ctx, raw_req,
  568. RAW_REQ_LENGTH * sizeof(uint8_t));
  569. printf("* modbus_send_raw_request: ");
  570. if ((use_backend == RTU && req_length == (RAW_REQ_LENGTH + 2)) ||
  571. ((use_backend == TCP || use_backend == TCP_PI) &&
  572. req_length == (RAW_REQ_LENGTH + 6))) {
  573. printf("OK\n");
  574. } else {
  575. printf("FAILED (%d)\n", req_length);
  576. goto close;
  577. }
  578. printf("* modbus_receive_confirmation: ");
  579. rc = modbus_receive_confirmation(ctx, rsp);
  580. if ((use_backend == RTU && rc == 15) ||
  581. ((use_backend == TCP || use_backend == TCP_PI) &&
  582. rc == 19)) {
  583. printf("OK\n");
  584. } else {
  585. printf("FAILED (%d)\n", rc);
  586. goto close;
  587. }
  588. }
  589. printf("\nALL TESTS PASS WITH SUCCESS.\n");
  590. close:
  591. /* Free the memory */
  592. free(tab_rp_bits);
  593. free(tab_rp_registers);
  594. /* Close the connection */
  595. modbus_close(ctx);
  596. modbus_free(ctx);
  597. return 0;
  598. }