Changeset 26fecba


Ignore:
Timestamp:
Nov 28, 2016, 4:25:11 PM (7 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
sampler
Children:
598774b
Parents:
024584d
git-author:
Paul Brossier <piem@piem.org> (10/03/16 11:46:37)
git-committer:
Paul Brossier <piem@piem.org> (11/28/16 16:25:11)
Message:

python/tests/test_source.py: check the tail of the file is non-zero on non silent test files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/tests/test_source.py

    r024584d r26fecba  
    33from nose2 import main
    44from nose2.tools import params
    5 from numpy.testing import TestCase
     5from numpy.testing import TestCase, assert_equal
    66from aubio import source
    77from utils import list_all_sounds
     8import numpy as np
    89
    910import warnings
     
    5253        total_frames = 0
    5354        while True:
    54             _ , read = f()
     55            samples , read = f()
    5556            total_frames += read
    56             if read < f.hop_size: break
     57            if read < f.hop_size:
     58                assert_equal(samples[read:], 0)
     59                if 'silence' not in f.uri:
     60                    self.assertEquals(np.count_nonzero(samples[:read]), read)
     61                break
    5762        #result_str = "read {:.2f}s ({:d} frames in {:d} blocks at {:d}Hz) from {:s}"
    5863        #result_params = total_frames / float(f.samplerate), total_frames, total_frames//f.hop_size, f.samplerate, f.uri
     
    150155        total_frames = 0
    151156        while True:
    152             _, read = f.do_multi()
     157            samples, read = f.do_multi()
    153158            total_frames += read
    154             if read < f.hop_size: break
     159            if read < f.hop_size:
     160                assert_equal(samples[:,read:], 0)
     161                if 'silence' not in f.uri:
     162                    self.assertEquals(np.count_nonzero(samples[:,:read]), read)
     163                break
    155164        #result_str = "read {:.2f}s ({:d} frames in {:d} channels and {:d} blocks at {:d}Hz) from {:s}"
    156165        #result_params = total_frames / float(f.samplerate), total_frames, f.channels, int(total_frames/f.hop_size), f.samplerate, f.uri
Note: See TracChangeset for help on using the changeset viewer.