analyzing_sentiment.test.yaml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. type: test/samples
  2. schema_version: 1
  3. test:
  4. suites:
  5. - name: "Analyzing Sentiment [code sample tests]"
  6. cases:
  7. - name: language_sentiment_text - Analyzing the sentiment of a text string (default value)
  8. spec:
  9. # Default value: "I am so happy and joyful."
  10. - call: {sample: language_sentiment_text}
  11. - assert_contains:
  12. - {literal: "Document sentiment score: 0."}
  13. - {literal: "Document sentiment magnitude: 0."}
  14. - {literal: "Sentence text: I am so happy and joyful."}
  15. - {literal: "Sentence sentiment score: 0."}
  16. - {literal: "Sentence sentiment magnitude: 0."}
  17. - {literal: "Language of the text: en"}
  18. # There should be no negative sentiment scores for this value.
  19. - assert_not_contains:
  20. - {literal: "Document sentiment score: -0."}
  21. - {literal: "Sentence sentiment score: -0."}
  22. - name: language_sentiment_text - Analyzing the sentiment of a text string (*custom value*)
  23. spec:
  24. # Custom value: "I am very happy. I am angry and sad."
  25. - call:
  26. sample: language_sentiment_text
  27. params:
  28. text_content: {literal: "I am very happy. I am angry and sad."}
  29. - assert_contains:
  30. - {literal: "Sentence text: I am very happy"}
  31. - {literal: "Sentence sentiment score: 0."}
  32. - {literal: "Sentence text: I am angry and sad"}
  33. - {literal: "Sentence sentiment score: -0."}
  34. - {literal: "Language of the text: en"}
  35. - name: language_sentiment_gcs - Analyzing the sentiment of text file in GCS (default value)
  36. spec:
  37. # Default value: gs://cloud-samples-data/language/sentiment-positive.txt
  38. # => "I am so happy and joyful."
  39. - call: {sample: language_sentiment_gcs}
  40. - assert_contains:
  41. - {literal: "Document sentiment score: 0."}
  42. - {literal: "Document sentiment magnitude: 0."}
  43. - {literal: "Sentence text: I am so happy and joyful."}
  44. - {literal: "Sentence sentiment score: 0."}
  45. - {literal: "Sentence sentiment magnitude: 0."}
  46. - {literal: "Language of the text: en"}
  47. # There should be no negative sentiment scores for this value.
  48. - assert_not_contains:
  49. - {literal: "Document sentiment score: -0."}
  50. - {literal: "Sentence sentiment score: -0."}
  51. - name: language_sentiment_gcs - Analyzing the sentiment of text file in GCS (*custom value*)
  52. spec:
  53. # Use different file: gs://cloud-samples-data/language/sentiment-negative.txt
  54. # => "I am so sad and upset."
  55. - call:
  56. sample: language_sentiment_gcs
  57. params:
  58. gcs_content_uri:
  59. literal: "gs://cloud-samples-data/language/sentiment-negative.txt"
  60. - assert_contains:
  61. - {literal: "Document sentiment score: -0."}
  62. - {literal: "Document sentiment magnitude: 0."}
  63. - {literal: "Sentence text: I am so sad and upset."}
  64. - {literal: "Sentence sentiment score: -0."}
  65. - {literal: "Sentence sentiment magnitude: 0."}
  66. - {literal: "Language of the text: en"}
  67. # There should be no positive sentiment scores for this value.
  68. - assert_not_contains:
  69. - {literal: "Document sentiment score: 0."}
  70. - {literal: "Sentence sentiment score: 0."}