test_as_tokenizer.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. #include <assert.h>
  5. #include "as_tokenizer.h"
  6. #include "utils.h"
  7. char *input_buffer =
  8. "start:\n"
  9. " add 1\n"
  10. " sub start\n"
  11. " div\n"
  12. " eq\n";
  13. char *expected_output =
  14. "LABEL: start, line: 1, col: 1\n"
  15. "COLON\n"
  16. "NEWLINE\n"
  17. "OP: add, line: 2, col: 5\n"
  18. "ARG: 1, line: 2, col: 10\n"
  19. "NEWLINE\n"
  20. "OP: sub, line: 3, col: 5\n"
  21. "LABEL: start, line: 3, col: 9\n"
  22. "NEWLINE\n"
  23. "OP: div, line: 4, col: 5\n"
  24. "NEWLINE\n"
  25. "OP: eq, line: 5, col: 5\n"
  26. "NEWLINE\n";
  27. int main(int argc, char** argv) {
  28. printf("[TEST] assembler tokenizer\n");
  29. // make a memory buffer to FILE*
  30. FILE *fp = fmemopen(input_buffer, strlen(input_buffer), "r");
  31. allocator_t alct = new_allocator();
  32. token_stream_t ts = new_token_stream(alct, fp);
  33. char *output_buffer = malloc(10240);
  34. // redirect stdout to a file
  35. FILE *out = fmemopen(output_buffer, 10240, "w");
  36. FILE *origin_stdout = stdout;
  37. stdout = out;
  38. while (peek_token(alct, ts)->type != TK_ENDOFFILE) {
  39. print_token(peek_token(alct, ts));
  40. next_token(alct, ts);
  41. }
  42. fclose(out);
  43. stdout = origin_stdout;
  44. assert(strcmp(output_buffer, expected_output) == 0);
  45. printf("[PASS] assembler tokenizer\n");
  46. free(output_buffer);
  47. delete_allocator(alct);
  48. return 0;
  49. }