analyzing_entities.test.yaml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. type: test/samples
  2. schema_version: 1
  3. test:
  4. suites:
  5. - name: "Analyzing Entities [code sample tests]"
  6. cases:
  7. - name: language_entities_text - Analyzing the Entities of a text string (default value)
  8. spec:
  9. # Default value: "California is a state."
  10. - call: {sample: language_entities_text}
  11. - assert_contains:
  12. - {literal: "Representative name for the entity: California"}
  13. - {literal: "Entity type: LOCATION"}
  14. - {literal: "Salience score:"}
  15. - {literal: "wikipedia_url: https://en.wikipedia.org/wiki/California"}
  16. - {literal: "mid: /m/01n7q"}
  17. - {literal: "Mention text: California"}
  18. - {literal: "Mention type: PROPER"}
  19. - {literal: "Mention text: state"}
  20. - {literal: "Mention type: COMMON"}
  21. - {literal: "Language of the text: en"}
  22. - name: language_entities_text - Analyzing the Entities of a text string (*custom value*)
  23. spec:
  24. # Custom value: "Alice is a person. She lives in California."
  25. - call:
  26. sample: language_entities_text
  27. params:
  28. text_content: {literal: "Alice is a person. She lives in California."}
  29. - assert_contains:
  30. - {literal: "Representative name for the entity: Alice"}
  31. - {literal: "Entity type: PERSON"}
  32. - {literal: "Mention text: Alice"}
  33. - {literal: "Mention type: PROPER"}
  34. - {literal: "Mention text: person"}
  35. - {literal: "Mention type: COMMON"}
  36. - {literal: "Representative name for the entity: California"}
  37. - {literal: "Entity type: LOCATION"}
  38. - {literal: "wikipedia_url: https://en.wikipedia.org/wiki/California"}
  39. - {literal: "mid: /m/01n7q"}
  40. - {literal: "Language of the text: en"}
  41. - name: language_entities_text - Analyzing the Entities of a text string (*metadata attributes*)
  42. spec:
  43. # Try out some of the metadata attributes which should be available for dates, addresses, etc.
  44. # In case fake (555) area code numbers don't work, using United States Naval Observatory number.
  45. # Custom value: "I called 202-762-1401 on January 31, 2019 from 1600 Amphitheatre Parkway, Mountain View, CA."
  46. - call:
  47. sample: language_entities_text
  48. params:
  49. text_content:
  50. literal: "I called 202-762-1401 on January 31, 2019 from 1600 Amphitheatre Parkway, Mountain View, CA."
  51. # The results may change, but it's fair to say that at least one of the following types were detected:
  52. - assert_contains_any:
  53. - literal: "Entity type: DATE"
  54. - literal: "Entity type: ADDRESS"
  55. - literal: "Entity type: PHONE_NUMBER"
  56. # Check that at least some of the supporting metadata for an entity was present in the response
  57. - assert_contains_any:
  58. - literal: "month: 1"
  59. - literal: "day: 31"
  60. - literal: "year: 2019"
  61. - literal: "street_number: 1600"
  62. - literal: "street_name: Amphitheatre Parkway"
  63. - literal: "area_code: 202"
  64. - literal: "number: 7621401"
  65. - name: language_entities_gcs - Analyzing the Entities of text file in GCS (default value)
  66. spec:
  67. # Default value: gs://cloud-samples-data/language/entity.txt
  68. # => "California is a state."
  69. - call: {sample: language_entities_gcs}
  70. - assert_contains:
  71. - {literal: "Representative name for the entity: California"}
  72. - {literal: "Entity type: LOCATION"}
  73. - {literal: "Salience score:"}
  74. - {literal: "wikipedia_url: https://en.wikipedia.org/wiki/California"}
  75. - {literal: "mid: /m/01n7q"}
  76. - {literal: "Mention text: California"}
  77. - {literal: "Mention type: PROPER"}
  78. - {literal: "Mention text: state"}
  79. - {literal: "Mention type: COMMON"}
  80. - {literal: "Language of the text: en"}
  81. - name: language_entities_gcs - Analyzing the Entities of text file in GCS (*custom value*)
  82. spec:
  83. # Use different file: gs://cloud-samples-data/language/entity-sentiment.txt
  84. # => "Grapes are good. Bananas are bad."
  85. - call:
  86. sample: language_entities_gcs
  87. params:
  88. gcs_content_uri:
  89. literal: "gs://cloud-samples-data/language/entity-sentiment.txt"
  90. - assert_contains:
  91. - {literal: "Representative name for the entity: Grapes"}
  92. - {literal: "Mention text: Grapes"}
  93. - {literal: "Mention type: COMMON"}
  94. - {literal: "Representative name for the entity: Bananas"}
  95. - {literal: "Mention text: Bananas"}
  96. - {literal: "Language of the text: en"}