#!/usr/bin/python3 # -*- coding:utf-8 -*- """ Compare the values in two Python data types for equality, ignoring the order of values """ import os import json from packageship.system_config import BASE_PATH def compare_two_values(obj1, obj2): """ Args: obj1:object1 It can be a data type in Python, and can be converted by using the str() method obj2:object2 same as obj1 Returns: True or False """ # With the help of the str() method provided by python,It's so powerful return obj1 == obj2 or (isinstance(obj1, type(obj2)) and "".join(sorted(str(obj1))) == "".join(sorted(str(obj2)))) def get_correct_json_by_filename(filename): """ Args: filename: Correct JSON file name without suffix Returns: list this json file's content """ json_path = os.path.join(os.path.dirname(BASE_PATH), "test", "common_files", "correct_test_result_json", "{}.json".format(filename)) try: with open(json_path, "r", encoding='utf-8') as json_fp: correct_list = json.loads(json_fp.read()) except FileNotFoundError: return [] return correct_list