test_scene_objects.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # ############################################################
  2. # Importing - Same For All Render Layer Tests
  3. # ############################################################
  4. import unittest
  5. import os
  6. import sys
  7. from view_layer_common import *
  8. # ############################################################
  9. # Testing
  10. # ############################################################
  11. class UnitTesting(ViewLayerTesting):
  12. def test_scene_objects_a(self):
  13. """
  14. Test vanilla scene
  15. """
  16. import bpy
  17. scene = bpy.context.scene
  18. self.assertEqual(len(scene.objects), 3)
  19. def test_scene_objects_b(self):
  20. """
  21. Test scene with nested collections
  22. """
  23. import bpy
  24. scene = bpy.context.scene
  25. # move default objects to a nested collection
  26. master_collection = scene.master_collection
  27. collection = master_collection.collections[0]
  28. collection_nested = collection.collections.new()
  29. for ob in collection.objects:
  30. collection_nested.objects.link(ob)
  31. while collection.objects:
  32. collection.objects.unlink(collection.objects[0])
  33. self.assertEqual(len(scene.objects), 3)
  34. # ############################################################
  35. # Main - Same For All Render Layer Tests
  36. # ############################################################
  37. if __name__ == '__main__':
  38. UnitTesting._extra_arguments = setup_extra_arguments(__file__)
  39. unittest.main()