2017-09-28 23:00:15 +00:00
|
|
|
# Copyright (c) 2016-present, Facebook, Inc.
|
|
|
|
|
#
|
|
|
|
|
# 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.
|
|
|
|
|
##############################################################################
|
|
|
|
|
|
2016-07-28 22:06:04 +00:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
from __future__ import division
|
|
|
|
|
from __future__ import print_function
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
from caffe2.python import core
|
|
|
|
|
from hypothesis import given
|
|
|
|
|
import caffe2.python.hypothesis_test_util as hu
|
|
|
|
|
import hypothesis.strategies as st
|
|
|
|
|
import numpy as np
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _string_lists(alphabet=None):
|
|
|
|
|
return st.lists(
|
|
|
|
|
elements=st.text(alphabet=alphabet, average_size=3),
|
|
|
|
|
min_size=0,
|
|
|
|
|
max_size=3)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestStringOps(hu.HypothesisTestCase):
|
|
|
|
|
@given(strings=_string_lists())
|
|
|
|
|
def test_string_prefix(self, strings):
|
|
|
|
|
length = 3
|
|
|
|
|
# although we are utf-8 encoding below to avoid python exceptions,
|
|
|
|
|
# StringPrefix op deals with byte-length prefixes, which may produce
|
|
|
|
|
# an invalid utf-8 string. The goal here is just to avoid python
|
|
|
|
|
# complaining about the unicode -> str conversion.
|
|
|
|
|
strings = np.array(
|
2017-05-30 22:29:57 +00:00
|
|
|
[a.encode('utf-8') for a in strings], dtype=np.object
|
|
|
|
|
)
|
2016-07-28 22:06:04 +00:00
|
|
|
|
|
|
|
|
def string_prefix_ref(strings):
|
|
|
|
|
return (
|
2017-05-30 22:29:57 +00:00
|
|
|
np.array([a[:length] for a in strings], dtype=object),
|
|
|
|
|
)
|
2016-07-28 22:06:04 +00:00
|
|
|
|
|
|
|
|
op = core.CreateOperator(
|
|
|
|
|
'StringPrefix',
|
|
|
|
|
['strings'],
|
|
|
|
|
['stripped'],
|
|
|
|
|
length=length)
|
|
|
|
|
self.assertReferenceChecks(
|
|
|
|
|
hu.cpu_do,
|
|
|
|
|
op,
|
|
|
|
|
[strings],
|
|
|
|
|
string_prefix_ref)
|
|
|
|
|
|
|
|
|
|
@given(strings=_string_lists())
|
|
|
|
|
def test_string_suffix(self, strings):
|
|
|
|
|
length = 3
|
|
|
|
|
strings = np.array(
|
2017-05-30 22:29:57 +00:00
|
|
|
[a.encode('utf-8') for a in strings], dtype=np.object
|
|
|
|
|
)
|
2016-07-28 22:06:04 +00:00
|
|
|
|
|
|
|
|
def string_suffix_ref(strings):
|
|
|
|
|
return (
|
2017-05-30 22:29:57 +00:00
|
|
|
np.array([a[-length:] for a in strings], dtype=object),
|
|
|
|
|
)
|
2016-07-28 22:06:04 +00:00
|
|
|
|
|
|
|
|
op = core.CreateOperator(
|
|
|
|
|
'StringSuffix',
|
|
|
|
|
['strings'],
|
|
|
|
|
['stripped'],
|
|
|
|
|
length=length)
|
|
|
|
|
self.assertReferenceChecks(
|
|
|
|
|
hu.cpu_do,
|
|
|
|
|
op,
|
|
|
|
|
[strings],
|
|
|
|
|
string_suffix_ref)
|
|
|
|
|
|
|
|
|
|
@given(strings=st.text(alphabet=['a', 'b'], average_size=3))
|
|
|
|
|
def test_string_starts_with(self, strings):
|
|
|
|
|
prefix = 'a'
|
|
|
|
|
strings = np.array(
|
2017-05-30 22:29:57 +00:00
|
|
|
[str(a) for a in strings], dtype=np.object
|
|
|
|
|
)
|
2016-07-28 22:06:04 +00:00
|
|
|
|
|
|
|
|
def string_starts_with_ref(strings):
|
2017-05-30 22:29:57 +00:00
|
|
|
return (
|
|
|
|
|
np.array([a.startswith(prefix) for a in strings], dtype=bool),
|
|
|
|
|
)
|
2016-07-28 22:06:04 +00:00
|
|
|
|
|
|
|
|
op = core.CreateOperator(
|
|
|
|
|
'StringStartsWith',
|
|
|
|
|
['strings'],
|
|
|
|
|
['bools'],
|
|
|
|
|
prefix=prefix)
|
|
|
|
|
self.assertReferenceChecks(
|
|
|
|
|
hu.cpu_do,
|
|
|
|
|
op,
|
|
|
|
|
[strings],
|
|
|
|
|
string_starts_with_ref)
|
|
|
|
|
|
|
|
|
|
@given(strings=st.text(alphabet=['a', 'b'], average_size=3))
|
|
|
|
|
def test_string_ends_with(self, strings):
|
|
|
|
|
suffix = 'a'
|
|
|
|
|
strings = np.array(
|
2017-05-30 22:29:57 +00:00
|
|
|
[str(a) for a in strings], dtype=np.object
|
|
|
|
|
)
|
2016-07-28 22:06:04 +00:00
|
|
|
|
|
|
|
|
def string_ends_with_ref(strings):
|
2017-05-30 22:29:57 +00:00
|
|
|
return (
|
|
|
|
|
np.array([a.endswith(suffix) for a in strings], dtype=bool),
|
|
|
|
|
)
|
2016-07-28 22:06:04 +00:00
|
|
|
|
|
|
|
|
op = core.CreateOperator(
|
|
|
|
|
'StringEndsWith',
|
|
|
|
|
['strings'],
|
|
|
|
|
['bools'],
|
|
|
|
|
suffix=suffix)
|
|
|
|
|
self.assertReferenceChecks(
|
|
|
|
|
hu.cpu_do,
|
|
|
|
|
op,
|
|
|
|
|
[strings],
|
|
|
|
|
string_ends_with_ref)
|
2016-11-23 02:31:47 +00:00
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
import unittest
|
|
|
|
|
unittest.main()
|