assimp/port/PyAssimp/scripts/quicktest.py

54 lines
1.7 KiB
Python
Raw Normal View History

#!/usr/bin/env python
#-*- coding: UTF-8 -*-
"""
This module uses the sample.py script to load all test models it finds.
Note: this is not an exhaustive test suite, it does not check the
data structures in detail. It just verifies whether basic
loading and querying of 3d models using pyassimp works.
"""
import os
import sys
# Make the development (ie. GIT repo) version of PyAssimp available for import.
sys.path.insert(0, '..')
import sample
from pyassimp import errors
2014-11-23 04:31:35 +00:00
# Paths to model files.
basepaths = [os.path.join('..', '..', '..', 'test', 'models'),
os.path.join('..', '..', '..', 'test', 'models-nonbsd')]
# Valid extensions for 3D model files.
extensions = ['.3ds', '.x', '.lwo', '.obj', '.md5mesh', '.dxf', '.ply', '.stl',
'.dae', '.md5anim', '.lws', '.irrmesh', '.nff', '.off', '.blend']
def run_tests():
2014-11-23 04:31:35 +00:00
ok, err = 0, 0
for path in basepaths:
print("Looking for models in %s..." % path)
for root, dirs, files in os.walk(path):
for afile in files:
2014-11-23 04:31:35 +00:00
base, ext = os.path.splitext(afile)
if ext in extensions:
try:
2014-11-23 04:31:35 +00:00
sample.main(os.path.join(root, afile))
ok += 1
except errors.AssimpError as error:
2014-11-23 04:31:35 +00:00
# Assimp error is fine; this is a controlled case.
print(error)
err += 1
except Exception:
2014-11-23 04:31:35 +00:00
print("Error encountered while loading <%s>"
% os.path.join(root, afile))
print('** Loaded %s models, got controlled errors for %s files'
% (ok, err))
if __name__ == '__main__':
2014-11-23 04:31:35 +00:00
run_tests()