Skip to content

Commit

Permalink
Merge 449f46b into c0a8794
Browse files Browse the repository at this point in the history
  • Loading branch information
Raúl Bejerano Urrea committed Feb 25, 2021
2 parents c0a8794 + 449f46b commit 5a6d31f
Show file tree
Hide file tree
Showing 3 changed files with 333 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ v1.8.3
*Release date: In development*

- Added utilities to download files

- Add dataset utilities

v1.8.2
------
Expand Down
203 changes: 203 additions & 0 deletions toolium/test/utils/test_dataset_utils.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,203 @@
# -*- coding: utf-8 -*-
u"""
Copyright 2021 Telefónica Investigación y Desarrollo, S.A.U.
This file is part of Toolium.
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.
"""

from toolium.utils.dataset import *


def test_generate_fixed_length_param_string():
param = generate_fixed_length_param("[STRING_WITH_LENGTH_5]")
assert param == "aaaaa"


def test_generate_fixed_length_param_string_array():
param = generate_fixed_length_param("[STRING_ARRAY_WITH_LENGTH_5]")
assert param == ["a", "a", "a", "a", "a"]


def test_generate_fixed_length_param_integer():
param = generate_fixed_length_param("[INTEGER_WITH_LENGTH_4]")
assert param == 1111


def test_generate_fixed_length_param_integer_array():
param = generate_fixed_length_param("[INTEGER_ARRAY_WITH_LENGTH_4]")
assert param == [1, 1, 1, 1]


def test_generate_fixed_length_param_json():
param = generate_fixed_length_param("[JSON_WITH_LENGTH_3]")
assert param == {"0": "0", "1": "1", "2": "2"}


def test_generate_fixed_length_param_incomplete():
param = generate_fixed_length_param("[INTEGER_WITH_LENGTH_4")
assert param == "[INTEGER_WITH_LENGTH_4"


def test_replace_param_missing_param():
param = replace_param("[MISSING_PARAM]")
assert param is None


def test_replace_param_empty():
param = replace_param("[EMPTY]")
assert param == ""


def test_replace_param_blank():
param = replace_param("[B]")
assert param == " "


def test_replace_param_random():
param = replace_param("[RANDOM]")
assert len(param) == 8
assert type(param) == str


def test_replace_param_null():
param = replace_param("[NULL]")
assert param is None


def test_replace_param_true():
param = replace_param("[TRUE]")
assert param is True


def test_replace_param_false():
param = replace_param("[FALSE]")
assert param is False


def test_replace_param_str():
param = replace_param("[STR:28]")
assert type(param) == str
assert param == "28"


def test_replace_param_int():
param = replace_param("[INT:28]")
assert type(param) == int
assert param == 28


def test_replace_param_float():
param = replace_param("[FLOAT:28]")
assert type(param) == float
assert param == 28.0


def test_replace_param_list_integers():
param = replace_param("[LIST:[1,2,3]]")
assert type(param) == list
assert param == [1, 2, 3]


def test_replace_param_list_strings():
param = replace_param("[LIST:['1','2','3']]")
assert type(param) == list
assert param == ["1", "2", "3"]


def test_replace_param_dict():
param = replace_param("[DICT:{'a':'test1','b':'test2','c':'test3'}]")
assert type(param) == dict
assert param == {"a": "test1", "b": "test2", "c": "test3"}


def test_replace_param_datetime():
param = replace_param("[DATETIME]")
assert datetime.datetime.strptime(param, "%Y-%m-%d %H:%M:%S.%f")


def test_replace_param_datetime_language_ignored():
param = replace_param("[DATETIME]", language="es")
assert datetime.datetime.strptime(param, "%Y-%m-%d %H:%M:%S.%f")


def test_replace_param_today_spanish():
param = replace_param("[TODAY]", language="es")
assert param == datetime.datetime.today().strftime("%d/%m/%Y")


def test_replace_param_today_not_spanish():
param = replace_param("[TODAY]", language="en")
assert param == datetime.datetime.today().strftime("%Y/%m/%d")


def test_replace_param_today_offset():
param = replace_param("[TODAY - 1 DAYS]", language="es")
assert param == datetime.datetime.strftime(
datetime.datetime.today() - datetime.timedelta(days=1), "%d/%m/%Y")


def test_replace_param_now_spanish():
param = replace_param("[NOW]", language="es")
assert param == datetime.datetime.utcnow().strftime("%d/%m/%Y %H:%M:%S")


def test_replace_param_now_not_spanish():
param = replace_param("[NOW]", language="it")
assert param == datetime.datetime.utcnow().strftime("%Y/%m/%d %H:%M:%S")


def test_replace_param_now_offset():
param = replace_param("[NOW + 5 MINUTES]", language="es")
assert param == datetime.datetime.strftime(
datetime.datetime.utcnow() + datetime.timedelta(minutes=5), "%d/%m/%Y %H:%M:%S")


def test_replace_param_string_with_length():
param = replace_param("[STRING_WITH_LENGTH_5]")
assert param == "aaaaa"


def test_replace_param_string_array_with_length():
param = replace_param("[STRING_ARRAY_WITH_LENGTH_5]")
assert param == ["a", "a", "a", "a", "a"]


def test_replace_param_integer_with_length():
param = replace_param("[INTEGER_WITH_LENGTH_4]")
assert param == 1111


def test_replace_param_integer_array_with_length():
param = replace_param("[INTEGER_ARRAY_WITH_LENGTH_4]")
assert param == [1, 1, 1, 1]


def test_replace_param_json_with_length():
param = replace_param("[JSON_WITH_LENGTH_3]")
assert param == {"0": "0", "1": "1", "2": "2"}


def test_replace_param_incomplete_format():
param = replace_param("[INTEGER_WITH_LENGTH_4")
assert param == "[INTEGER_WITH_LENGTH_4"


def test_replace_param_float_with_length():
param = replace_param("[FLOAT_WITH_LENGTH_4]")
assert param == "[FLOAT_WITH_LENGTH_4]"


def test_replace_param_float_with_length():
param = replace_param("[FLOAT_ARRAY_WITH_LENGTH_4]")
assert param == "[FLOAT_ARRAY_WITH_LENGTH_4]"
129 changes: 129 additions & 0 deletions toolium/utils/dataset.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
# -*- coding: utf-8 -*-
u"""
Copyright 2021 Telefónica Investigación y Desarrollo, S.A.U.
This file is part of Toolium.
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 uuid
import re
import datetime
import logging

from six import string_types, text_type
from six.moves import xrange


def replace_param(param, language="es"):
"""
Available replacements:
[STRING_WITH_LENGTH_XX] Generates a fixed length string
[INTEGER_WITH_LENGTH_XX] Generates a fixed length integer
[STRING_ARRAY_WITH_LENGTH_XX] Generates a fixed length array of strings
[INTEGER_ARRAY_WITH_LENGTH_XX] Generates a fixed length array of integers
[JSON_WITH_LENGTH_XX] Generates a fixed length JSON
[MISSING_PARAM] Remove the param from the Dataset
[EMPTY] Empty string
[B] Add Blank space
[RANDOM] Generate random value
[DATETIME] Add a timestamp
[NOW] Similar to DATETIME without milliseconds
[NOW + 2 DAYS] Similar to NOW but two days later
[NOW - 1 MINUTES] Similar to NOW but one minute earlier
[TODAY] Similar to NOW without time
[TODAY + 2 DAYS] Functionality similar to NOW, but only with date offsets (days, weeks)
:param param: Test parameter
:param language: Specify date format for NOW and TODAY
:return data with the correct replacements
"""

logger = logging.getLogger(__name__)
if not isinstance(param, string_types):
return param

date_format = "%d/%m/%Y %H:%M:%S" if language == "es" else "%Y/%m/%d %H:%M:%S"
date_day_format = "%d/%m/%Y" if language == "es" else "%Y/%m/%d"
date_matcher = re.match("\[(NOW|TODAY)\s*([\+|-]\s*\d+)\s*(\w+)\s*\]", param)

type_mapping_regex = "\[(DICT|LIST|INT|FLOAT|STR):(.*)\]"
type_mapping_match_group = re.match(type_mapping_regex, param)

if "[MISSING_PARAM]" in param:
new_param = None
elif "[EMPTY]" in param:
new_param = param.replace("[EMPTY]", "")
elif "[B]" in param:
new_param = param.replace("[B]", " ")
elif "[RANDOM]" in param:
return param.replace("[RANDOM]", uuid.uuid4().hex[0:8])
elif "[DATETIME]" in param:
return param.replace("[DATETIME]", str(datetime.datetime.utcnow()))
elif "[NOW]" in param:
return param.replace("[NOW]", str(datetime.datetime.utcnow().strftime(date_format)))
elif "[TODAY]" in param:
return param.replace("[TODAY]", str(datetime.datetime.utcnow().strftime(date_day_format)))
elif "[TRUE]" in param:
return True
elif "[FALSE]" in param:
return False
elif "[NULL]" in param:
return None
elif type_mapping_match_group and type_mapping_match_group.group(1) in \
["LIST", "DICT", "INT", "FLOAT", "STR"]:
exec(u"exec_param = {type}({value})".format(type=type_mapping_match_group.group(1).lower(),
value=type_mapping_match_group.group(2)))
return locals()["exec_param"]
elif date_matcher and len(date_matcher.groups()) == 3:
configuration = dict([(date_matcher.group(3).lower(), int(date_matcher.group(2).replace(
" ", "")))])
now = (date_matcher.group(1) == "NOW")
reference_date = datetime.datetime.utcnow() if now else datetime.datetime.utcnow().date()
replace_value = reference_date + datetime.timedelta(**configuration)
return replace_value.strftime(date_format) if now else replace_value.strftime(
date_day_format)
else:
new_param = generate_fixed_length_param(param)
logger.debug("Input param: %s, output param: %s" % (param, new_param))
return new_param


def generate_fixed_length_param(param):
"""
Generate a fixed length param if the elements matches the expression
[<type>_WITH_LENGTH_<length>] where <type> can be:
STRING, INTEGER, STRING_ARRAY, INTEGER_ARRAY, JSON.
E.g.: [STRING_WITH_LENGTH_15]
:param param: Lettuce param
:return param with the desired length
"""
if param.startswith("[") and param.endswith("]"):
if any(x in param for x in ["STRING_ARRAY_WITH_LENGTH_", "INTEGER_ARRAY_WITH_LENGTH_"]):
seeds = {"STRING": "a", "INTEGER": 1}
seed, length = param[1:-1].split("_ARRAY_WITH_LENGTH_")
param = list(seeds[seed] for x in xrange(int(length)))
elif "JSON_WITH_LENGTH_" in param:
length = int(param[1:-1].split("JSON_WITH_LENGTH_")[1])
param = dict((str(x), str(x)) for x in xrange(length))
elif any(x in param for x in ["STRING_WITH_LENGTH_", "INTEGER_WITH_LENGTH_"]):
seeds = {"STRING": "a", "INTEGER": "1"}
# The chain to be generated can be just a part of param
start = param.find("[")
end = param.find("]")
seed, length = param[start + 1:end].split("_WITH_LENGTH_")
generated_part = seeds[seed] * int(length)
placeholder = "[" + seed + "_WITH_LENGTH_" + length + "]"
param = param.replace(placeholder, generated_part)
if seed == "INTEGER":
param = int(param)
return param

0 comments on commit 5a6d31f

Please sign in to comment.