test_as_tokenizer.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. #include <assert.h>
  5. #include "as_tokenizer.h"
  6. char *inputBuffer =
  7. "start:\n"
  8. " add 1\n"
  9. " sub start\n"
  10. " div\n"
  11. " eq\n";
  12. char *expectedOutput =
  13. "LABEL: start, line: 1, col: 1\n"
  14. "COLON\n"
  15. "NEWLINE\n"
  16. "OP: add, line: 2, col: 5\n"
  17. "ARG: 1, line: 2, col: 10\n"
  18. "NEWLINE\n"
  19. "OP: sub, line: 3, col: 5\n"
  20. "LABEL: start, line: 3, col: 9\n"
  21. "NEWLINE\n"
  22. "OP: div, line: 4, col: 5\n"
  23. "NEWLINE\n"
  24. "OP: eq, line: 5, col: 5\n"
  25. "NEWLINE\n";
  26. int main(int argc, char** argv) {
  27. printf("[TEST] assembler tokenizer\n");
  28. // make a memory buffer to FILE*
  29. FILE *fp = fmemopen(inputBuffer, strlen(inputBuffer), "r");
  30. TokenStream* ts = makeTokenStream(fp);
  31. char *outputBuffer = malloc(10240);
  32. // redirect stdout to a file
  33. FILE *out = fmemopen(outputBuffer, 10240, "w");
  34. FILE *origin_stdout = stdout;
  35. stdout = out;
  36. while (peekToken(ts)->type != ENDOFFILE) {
  37. printToken(peekToken(ts));
  38. nextToken(ts);
  39. }
  40. fclose(out);
  41. stdout = origin_stdout;
  42. // compare outputBuffer with expectedOutput
  43. assert(strcmp(outputBuffer, expectedOutput) == 0);
  44. printf("[PASS] assembler tokenizer\n");
  45. return 0;
  46. }