예제 #1
0
파일: test_scalar.py 프로젝트: chdoig/blaze
    def test_functiondef_fail(self):
        dtypes = self.dtypes
        with raises(NotImplementedError):
            exprify('lambda x, y: x + y', dtypes)

        with raises(SyntaxError):
            exprify('def f(x): return x', dtypes={'x': 'int'})
예제 #2
0
파일: test_scalar.py 프로젝트: chdoig/blaze
    def test_scope(self):
        dtypes = {'sin': 'int'}
        with raises(ValueError):
            exprify('sin + 1', dtypes)

        with raises(TypeError):
            sin + 1
예제 #3
0
파일: test_scalar.py 프로젝트: chdoig/blaze
    def test_failing_exprify(self):
        dtypes = self.dtypes

        with raises(AssertionError):
            exprify('x < y < z', dtypes)

        with raises(NotImplementedError):
            exprify('os.listdir()', {})

        with raises(NotImplementedError):
            exprify('os.listdir()', {'os': 'int', 'os.listdir': 'real'})

        with raises(ValueError):
            exprify('__x + __y', {'__x': 'int', '__y': 'real'})

        with raises(NotImplementedError):
            exprify('y if x else y', dtypes)
예제 #4
0
파일: test_scalar.py 프로젝트: chdoig/blaze
    def test_boolop_fails(self):
        dtypes = self.dtypes

        with raises(NotImplementedError):
            exprify('x or y', dtypes)

        with raises(NotImplementedError):
            exprify('x and y', dtypes)

        with raises(NotImplementedError):
            exprify('not x', dtypes)
예제 #5
0
파일: test_scalar.py 프로젝트: chdoig/blaze
    def test_comprehensions_fail(self):
        dtypes = self.dtypes

        if sys.version_info < (2, 7):
            # dict and set comprehensions are not implemented in Python < 2.7
            error = SyntaxError
        else:
            # and we don't allow them in versions that do
            error = NotImplementedError

        with raises(error):
            exprify('{x: y for z in y}', dtypes)

        with raises(error):
            exprify('{x for z in y}', dtypes)

        with raises(NotImplementedError):
            exprify('[x for z in y]', dtypes)

        with raises(NotImplementedError):
            exprify('(x for y in z)', dtypes)
예제 #6
0
파일: test_scalar.py 프로젝트: chdoig/blaze
 def test_literal_float_compare(self):
     other = self.y == 1.0
     result = exprify('y == 1.0', self.dtypes)
     assert isinstance(result.rhs, float)
     assert result.isidentical(other)
예제 #7
0
파일: test_scalar.py 프로젝트: chdoig/blaze
 def test_literal_int_compare(self):
     other = self.x == 1
     result = exprify('x == 1', self.dtypes)
     assert isinstance(result.rhs, int)
     assert result.isidentical(other)
예제 #8
0
파일: test_scalar.py 프로젝트: chdoig/blaze
 def test_literal_string_compare(self):
     other = self.name == "Alice"
     result = exprify('name == "Alice"', {'name': 'string'})
     assert isinstance(result.rhs, basestring)
     assert result.isidentical(other)
예제 #9
0
파일: test_scalar.py 프로젝트: chdoig/blaze
 def test_simple_boolean_not(self):
     other = ~self.x
     assert exprify('~x', {'x': 'bool'}).isidentical(other)
예제 #10
0
파일: test_scalar.py 프로젝트: chdoig/blaze
 def test_comparison(self):
     other = (self.x == 1) | (self.x == 2)
     assert exprify('(x == 1) | (x == 2)', self.dtypes).isidentical(other)
예제 #11
0
파일: test_scalar.py 프로젝트: chdoig/blaze
    def test_basic_arithmetic(self):
        assert exprify('x + y', self.dtypes).isidentical(self.x + self.y)

        other = isnan(sin(x) + y)
        assert exprify('isnan(sin(x) + y)', self.dtypes).isidentical(other)

        # parsed as a Num in Python 2 and a UnaryOp in Python 3
        assert exprify('-1', {}) == -1

        # parsed as UnaryOp(op=USub(), operand=1)
        assert exprify('-x', self.dtypes).isidentical(-self.x)

        assert exprify('-x + y', self.dtypes).isidentical(-self.x + self.y)

        other = self.x * self.y + self.z
        assert exprify('x * y + z', self.dtypes).isidentical(other)
        assert exprify('x ** y', self.dtypes).isidentical(self.x ** self.y)

        other = self.x / self.y / self.z + 1
        assert exprify('x / y / z + 1', self.dtypes).isidentical(other)

        other = self.x / self.y % self.z + 2 ** self.y
        assert exprify('x / y % z + 2 ** y', self.dtypes).isidentical(other)

        assert exprify('x // y', self.dtypes).isidentical(self.x // self.y)
        assert exprify('1 // y // x', self.dtypes).isidentical(
            1 // self.y // self.x)