test_as_tokenizer.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. "ENDOFFILE\n";
  28. int main(int argc, char** argv) {
  29. printf("[TEST] assembler tokenizer\n");
  30. // make a memory buffer to FILE*
  31. FILE *fp = fmemopen(input_buffer, strlen(input_buffer), "r");
  32. struct allocator * alct = new_allocator();
  33. struct token_stream * ts = new_token_stream(alct, fp);
  34. char *output_buffer = malloc(10240);
  35. // redirect stdout to a file
  36. FILE *out = fmemopen(output_buffer, 10240, "w");
  37. FILE *origin_stdout = stdout;
  38. stdout = out;
  39. struct token* token;
  40. struct result result;
  41. while (1) {
  42. result = peek_token(alct, ts);
  43. assert(result.errmsg == NULL);
  44. assert(result.value != NULL);
  45. token = result.value;
  46. print_token(token);
  47. if (token->type == TK_ENDOFFILE) break;
  48. next_token(alct, ts);
  49. }
  50. fclose(out);
  51. stdout = origin_stdout;
  52. assert(strcmp(output_buffer, expected_output) == 0);
  53. printf("[PASS] assembler tokenizer\n");
  54. free(output_buffer);
  55. delete_allocator(alct);
  56. return 0;
  57. }