Python audioop.findmax() Examples

The following are 19 code examples of audioop.findmax(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module audioop , or try the search function .
Example #1
Source File: test_audioop.py    From ironpython3 with Apache License 2.0 5 votes vote down vote up
def test_negativelen(self):
        # from issue 3306, previously it segfaulted
        self.assertRaises(audioop.error,
            audioop.findmax, bytes(range(256)), -2392392) 
Example #2
Source File: test_audioop.py    From CTFCrackTools with GNU General Public License v3.0 5 votes vote down vote up
def test_negativelen(self):
        # from issue 3306, previously it segfaulted
        self.assertRaises(audioop.error,
            audioop.findmax, ''.join( chr(x) for x in xrange(256)), -2392392) 
Example #3
Source File: test_audioop.py    From CTFCrackTools with GNU General Public License v3.0 5 votes vote down vote up
def test_findmax(self):
        self.assertEqual(audioop.findmax(datas[2], 1), 5) 
Example #4
Source File: test_audioop.py    From CTFCrackTools-V2 with GNU General Public License v3.0 5 votes vote down vote up
def test_negativelen(self):
        # from issue 3306, previously it segfaulted
        self.assertRaises(audioop.error,
            audioop.findmax, ''.join( chr(x) for x in xrange(256)), -2392392) 
Example #5
Source File: test_audioop.py    From CTFCrackTools-V2 with GNU General Public License v3.0 5 votes vote down vote up
def test_findmax(self):
        self.assertEqual(audioop.findmax(datas[2], 1), 5) 
Example #6
Source File: test_audioop.py    From medicare-demo with Apache License 2.0 5 votes vote down vote up
def testfindmax(data):
    if verbose:
        print 'findmax'
    if audioop.findmax(data[1], 1) != 2:
        return 0
    return 1 
Example #7
Source File: test_audioop.py    From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 5 votes vote down vote up
def test_negativelen(self):
        # from issue 3306, previously it segfaulted
        self.assertRaises(audioop.error,
            audioop.findmax, bytes(range(256)), -2392392) 
Example #8
Source File: test_audioop.py    From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 5 votes vote down vote up
def test_findmax(self):
        self.assertEqual(audioop.findmax(datas[2], 1), 5)
        self.assertEqual(audioop.findmax(bytearray(datas[2]), 1), 5)
        self.assertEqual(audioop.findmax(memoryview(datas[2]), 1), 5) 
Example #9
Source File: test_audioop.py    From gcblue with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def test_negativelen(self):
        # from issue 3306, previously it segfaulted
        self.assertRaises(audioop.error,
            audioop.findmax, ''.join( chr(x) for x in xrange(256)), -2392392) 
Example #10
Source File: test_audioop.py    From gcblue with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def test_findmax(self):
        self.assertEqual(audioop.findmax(datas[2], 1), 5) 
Example #11
Source File: test_audioop.py    From ironpython2 with Apache License 2.0 5 votes vote down vote up
def test_findmax(self):
        self.assertEqual(audioop.findmax(datas[2], 1), 5) 
Example #12
Source File: test_audioop.py    From ironpython3 with Apache License 2.0 5 votes vote down vote up
def test_findmax(self):
        self.assertEqual(audioop.findmax(datas[2], 1), 5)
        self.assertEqual(audioop.findmax(bytearray(datas[2]), 1), 5)
        self.assertEqual(audioop.findmax(memoryview(datas[2]), 1), 5) 
Example #13
Source File: test_audioop.py    From Fluid-Designer with GNU General Public License v3.0 5 votes vote down vote up
def test_negativelen(self):
        # from issue 3306, previously it segfaulted
        self.assertRaises(audioop.error,
            audioop.findmax, bytes(range(256)), -2392392) 
Example #14
Source File: test_audioop.py    From Fluid-Designer with GNU General Public License v3.0 5 votes vote down vote up
def test_findmax(self):
        self.assertEqual(audioop.findmax(datas[2], 1), 5)
        self.assertEqual(audioop.findmax(bytearray(datas[2]), 1), 5)
        self.assertEqual(audioop.findmax(memoryview(datas[2]), 1), 5) 
Example #15
Source File: test_audioop.py    From oss-ftp with MIT License 5 votes vote down vote up
def test_negativelen(self):
        # from issue 3306, previously it segfaulted
        self.assertRaises(audioop.error,
            audioop.findmax, ''.join( chr(x) for x in xrange(256)), -2392392) 
Example #16
Source File: test_audioop.py    From oss-ftp with MIT License 5 votes vote down vote up
def test_findmax(self):
        self.assertEqual(audioop.findmax(datas[2], 1), 5) 
Example #17
Source File: test_audioop.py    From BinderFilter with MIT License 5 votes vote down vote up
def test_negativelen(self):
        # from issue 3306, previously it segfaulted
        self.assertRaises(audioop.error,
            audioop.findmax, ''.join( chr(x) for x in xrange(256)), -2392392) 
Example #18
Source File: test_audioop.py    From BinderFilter with MIT License 5 votes vote down vote up
def test_findmax(self):
        self.assertEqual(audioop.findmax(datas[2], 1), 5) 
Example #19
Source File: test_audioop.py    From ironpython2 with Apache License 2.0 5 votes vote down vote up
def test_negativelen(self):
        # from issue 3306, previously it segfaulted
        self.assertRaises(audioop.error,
            audioop.findmax, ''.join( chr(x) for x in xrange(256)), -2392392)