classifying_content.test.yaml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. type: test/samples
  2. schema_version: 1
  3. test:
  4. suites:
  5. - name: "Classifying Content [code sample tests]"
  6. cases:
  7. - name: language_classify_text - Classifying Content of a text string (default value)
  8. spec:
  9. # Default value: "That actor on TV makes movies in Hollywood and also stars in a variety of popular new TV shows."
  10. - call: {sample: language_classify_text}
  11. - assert_contains_any:
  12. - {literal: "TV"}
  13. - {literal: "Movies"}
  14. - {literal: "Entertainment"}
  15. - name: language_classify_text - Classifying Content of a text string (*custom value*)
  16. spec:
  17. # Custom value: "Let's drink coffee and eat bagels at a coffee shop. I want muffins, croisants, coffee and baked goods."
  18. - call:
  19. sample: language_classify_text
  20. params:
  21. text_content: {literal: "Let's drink coffee and eat bagels at a coffee shop. I want muffins, croisants, coffee and baked goods."}
  22. - assert_contains_any:
  23. - {literal: "Food"}
  24. - {literal: "Drink"}
  25. - {literal: "Coffee"}
  26. - name: language_classify_gcs - Classifying Content of text file in GCS (default value)
  27. spec:
  28. # Default value: gs://cloud-samples-data/language/classify-entertainment.txt
  29. # => "This is about film and movies and television and acting and movie theatres and theatre and drama and entertainment and the arts."
  30. - call: {sample: language_classify_gcs}
  31. - assert_contains_any:
  32. - {literal: "TV"}
  33. - {literal: "Movies"}
  34. - {literal: "Entertainment"}
  35. - name: language_classify_gcs - Classifying Content of text file in GCS (*custom value*)
  36. spec:
  37. # Use different file: gs://cloud-samples-data/language/android.txt
  38. # => "Android is a mobile operating system developed by Google, based on the Linux kernel and..."
  39. - call:
  40. sample: language_classify_gcs
  41. params:
  42. gcs_content_uri:
  43. literal: "gs://cloud-samples-data/language/android.txt"
  44. - assert_contains_any:
  45. - {literal: "Mobile"}
  46. - {literal: "Phone"}
  47. - {literal: "Internet"}