Skip to content

Commit

Permalink
TST: Check more error messages in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gfyoung committed Jul 24, 2017
1 parent c55dbf0 commit 8e0bbd7
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 29 deletions.
21 changes: 13 additions & 8 deletions pandas/tests/io/msgpack/test_except.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# coding: utf-8

import pytest

from datetime import datetime
from pandas.io.msgpack import packb, unpackb

import pytest
import pandas.util.testing as tm


class DummyException(Exception):
pass
Expand All @@ -12,12 +14,13 @@ class DummyException(Exception):
class TestExceptions(object):

def test_raise_on_find_unsupported_value(self):
import datetime
pytest.raises(TypeError, packb, datetime.datetime.now())
msg = "can\'t serialize datetime"
with tm.assert_raises_regex(TypeError, msg):
packb(datetime.now())

def test_raise_from_object_hook(self):
def hook(obj):
raise DummyException
def hook(_):
raise DummyException()

pytest.raises(DummyException, unpackb, packb({}), object_hook=hook)
pytest.raises(DummyException, unpackb, packb({'fizz': 'buzz'}),
Expand All @@ -30,5 +33,7 @@ def hook(obj):
packb({'fizz': {'buzz': 'spam'}}),
object_pairs_hook=hook)

def test_invalidvalue(self):
pytest.raises(ValueError, unpackb, b'\xd9\x97#DL_')
def test_invalid_value(self):
msg = "Unpack failed: error"
with tm.assert_raises_regex(ValueError, msg):
unpackb(b"\xd9\x97#DL_")
38 changes: 17 additions & 21 deletions pandas/tests/series/test_validate.py
Original file line number Diff line number Diff line change
@@ -1,30 +1,26 @@
import pytest
from pandas.core.series import Series

import pytest
import pandas.util.testing as tm


class TestSeriesValidate(object):
"""Tests for error handling related to data types of method arguments."""
s = Series([1, 2, 3, 4, 5])

def test_validate_bool_args(self):
# Tests for error handling related to boolean arguments.
invalid_values = [1, "True", [1, 2, 3], 5.0]

for value in invalid_values:
with pytest.raises(ValueError):
self.s.reset_index(inplace=value)

with pytest.raises(ValueError):
self.s._set_name(name='hello', inplace=value)

with pytest.raises(ValueError):
self.s.sort_values(inplace=value)
@classmethod
def setup_class(cls):
cls.s = Series([1, 2, 3, 4, 5])

with pytest.raises(ValueError):
self.s.sort_index(inplace=value)
@pytest.mark.parametrize("func", ["reset_index", "_set_name",
"sort_values", "sort_index",
"rename", "dropna"])
@pytest.mark.parametrize("inplace", [1, "True", [1, 2, 3], 5.0])
def test_validate_bool_args(self, func, inplace):
msg = "For argument \"inplace\" expected type bool"
kwargs = dict(inplace=inplace)

with pytest.raises(ValueError):
self.s.rename(inplace=value)
if func == "_set_name":
kwargs["name"] = "hello"

with pytest.raises(ValueError):
self.s.dropna(inplace=value)
with tm.assert_raises_regex(ValueError, msg):
getattr(self.s, func)(**kwargs)

0 comments on commit 8e0bbd7

Please sign in to comment.