analyzing_entity_sentiment.test.yaml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. type: test/samples
  2. schema_version: 1
  3. test:
  4. suites:
  5. - name: "Analyzing Entity Sentiment [code sample tests]"
  6. cases:
  7. - name: language_entity_sentiment_text - Analyzing Entity Sentiment of a text string (default value)
  8. spec:
  9. # Default value: "Grapes are good. Bananas are bad."
  10. - call: {sample: language_entity_sentiment_text}
  11. - assert_contains:
  12. - {literal: "Representative name for the entity: Grapes"}
  13. - {literal: "Entity sentiment score: 0."}
  14. - {literal: "Representative name for the entity: Bananas"}
  15. - {literal: "Entity sentiment score: -0."}
  16. - {literal: "Entity sentiment magnitude: 0."}
  17. - {literal: "Language of the text: en"}
  18. - name: language_entity_sentiment_text - Analyzing Entity Sentiment of a text string (*custom value*)
  19. spec:
  20. # Custom value: "Grapes are actually not very good. But Bananas are great."
  21. - call:
  22. sample: language_entity_sentiment_text
  23. params:
  24. text_content: {literal: "Grapes are actually not very good. But Bananas are great."}
  25. - assert_contains:
  26. - {literal: "Representative name for the entity: Grapes"}
  27. - {literal: "Entity sentiment score: -0."}
  28. - {literal: "Representative name for the entity: Bananas"}
  29. - {literal: "Entity sentiment score: 0."}
  30. - {literal: "Entity sentiment magnitude: 0."}
  31. - {literal: "Language of the text: en"}
  32. - name: language_entity_sentiment_gcs - Analyzing Entity Sentiment of text file in GCS (default value)
  33. spec:
  34. # Default value: gs://cloud-samples-data/language/entity-sentiment.txt
  35. # => "Grapes are good. Bananas are bad."
  36. - call: {sample: language_entity_sentiment_gcs}
  37. - assert_contains:
  38. - {literal: "Representative name for the entity: Grapes"}
  39. - {literal: "Entity sentiment score: -0."}
  40. - {literal: "Representative name for the entity: Bananas"}
  41. - {literal: "Entity sentiment score: 0."}
  42. - {literal: "Entity sentiment magnitude: 0."}
  43. - {literal: "Language of the text: en"}
  44. - name: language_entity_sentiment_gcs - Analyzing Entity Sentiment of text file in GCS (*custom value*)
  45. spec:
  46. # Use different file: gs://cloud-samples-data/language/entity-sentiment-reverse.txt
  47. # => "Grapes are actually not very good. But Bananas are great."
  48. - call:
  49. sample: language_entity_sentiment_gcs
  50. params:
  51. gcs_content_uri:
  52. literal: "gs://cloud-samples-data/language/entity-sentiment-reverse.txt"
  53. - assert_contains:
  54. - {literal: "Representative name for the entity: Grapes"}
  55. - {literal: "Entity sentiment score: -0."}
  56. - {literal: "Representative name for the entity: Bananas"}
  57. - {literal: "Entity sentiment score: 0."}
  58. - {literal: "Entity sentiment magnitude: 0."}
  59. - {literal: "Language of the text: en"}