analyzing_syntax.test.yaml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. type: test/samples
  2. schema_version: 1
  3. test:
  4. suites:
  5. - name: "Analyzing Syntax [code sample tests]"
  6. cases:
  7. - name: language_syntax_text - Analyzing the syntax of a text string (default value)
  8. spec:
  9. # Default value: "This is a short sentence."
  10. - call: {sample: language_syntax_text}
  11. - assert_contains:
  12. - {literal: "Token text: is"}
  13. - {literal: "Part of Speech tag: VERB"}
  14. - {literal: "Tense: PRESENT"}
  15. - {literal: "Lemma: be"}
  16. - {literal: "Token text: short"}
  17. - {literal: "Part of Speech tag: ADJ"}
  18. - {literal: "Lemma: short"}
  19. - {literal: "Language of the text: en"}
  20. - name: language_syntax_text - Analyzing the syntax of a text string (*custom value*)
  21. spec:
  22. # Custom value: "Alice runs. Bob ran."
  23. - call:
  24. sample: language_syntax_text
  25. params:
  26. text_content: {literal: "Alice runs. Bob ran."}
  27. - assert_contains:
  28. - {literal: "Token text: Alice"}
  29. - {literal: "Location of this token in overall document: 0"}
  30. - {literal: "Part of Speech tag: NOUN"}
  31. - {literal: "Label: NSUBJ"}
  32. - {literal: "Token text: runs"}
  33. - {literal: "Part of Speech tag: VERB"}
  34. - {literal: "Tense: PRESENT"}
  35. - {literal: "Lemma: run"}
  36. - {literal: "Token text: ran"}
  37. - {literal: "Tense: PAST"}
  38. - {literal: "Language of the text: en"}
  39. - name: language_syntax_gcs - Analyzing the syntax of text file in GCS (default value)
  40. spec:
  41. # Default value: gs://cloud-samples-data/language/syntax-sentence.txt
  42. # => "This is a short sentence."
  43. - call: {sample: language_syntax_gcs}
  44. - assert_contains:
  45. - {literal: "Token text: is"}
  46. - {literal: "Part of Speech tag: VERB"}
  47. - {literal: "Tense: PRESENT"}
  48. - {literal: "Lemma: be"}
  49. - {literal: "Token text: short"}
  50. - {literal: "Part of Speech tag: ADJ"}
  51. - {literal: "Lemma: short"}
  52. - {literal: "Language of the text: en"}
  53. - name: language_syntax_gcs - Analyzing the syntax of text file in GCS (*custom value*)
  54. spec:
  55. # Use different file: gs://cloud-samples-data/language/hello.txt
  56. # => "Hello, world!"
  57. - call:
  58. sample: language_syntax_gcs
  59. params:
  60. gcs_content_uri:
  61. literal: "gs://cloud-samples-data/language/hello.txt"
  62. - assert_contains:
  63. - {literal: "Token text: Hello"}
  64. - {literal: "Token text: World"}
  65. - {literal: "Part of Speech tag: NOUN"}
  66. - {literal: "Token text: !"}
  67. - {literal: "Part of Speech tag: PUNCT"}
  68. - {literal: "Language of the text: en"}