aboutsummaryrefslogtreecommitdiff
path: root/tests/test_utils.py
blob: bf53091370f141b58fe5c9021038f74fb7877de4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#    Copyright 2015-2017 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#


import unittest
from trappy import utils
import pandas
from pandas.util.testing import assert_series_equal


class TestUtils(unittest.TestCase):

    def test_handle_duplicate_index(self):
        """Test Util Function: handle_duplicate_index
        """

        # Refer to the example in the function doc string
        values = [0, 1, 2, 3, 4]
        index = [0.0, 1.0, 1.0, 6.0, 7.0]
        series = pandas.Series(values, index=index)
        new_index = [0.0, 1.0, 2.0, 3.0, 4.0, 6.0, 7.0]

        with self.assertRaises(ValueError):
            series.reindex(new_index)

        max_delta = 0.001
        expected_index = [0.0, 1.0, 1 + max_delta, 6.0, 7.0]
        expected_series = pandas.Series(values, index=expected_index)
        series = utils.handle_duplicate_index(series, max_delta)
        assert_series_equal(series, expected_series)

        # Make sure that the reindex doesn't raise ValueError any more
        series.reindex(new_index)

    def test_handle_duplicate_index_duplicate_end(self):
        """handle_duplicate_index copes with duplicates at the end of the series"""

        max_delta = 0.001
        values = [0, 1, 2, 3, 4]
        index = [0.0, 1.0, 2.0, 6.0, 6.0]
        expected_index = index[:]
        expected_index[-1] += max_delta
        series = pandas.Series(values, index=index)
        expected_series = pandas.Series(values, index=expected_index)

        series = utils.handle_duplicate_index(series, max_delta)
        assert_series_equal(series, expected_series)