Skip to main content

For comparing csv-files or 2d-array with csv-file.

Project description

Preparation

Installation

If you already have Python with pip installed, you can simply run:

pip install DataComparerLibrary
pip install --upgrade DataComparerLibrary

Import statement for the DataComparerLibrary in Python

from DataComparerLibrary.datacomparer import DataComparer

DataComparer

Introduction

The DataComparerLibrary can be used for:
  • comparing csv-files or text-files

  • comparing a 2d-matrix with a csv-file or text-file

  • comparing a csv_file or text-file with a 2d-matrix

  • comparing 2d-matrices

In case a difference between actual and expected data is found an exception wil be given. In Robot Framework the result will be set to failed. A strait comparison can be made, but the DataComparerLibrary offers also some special comparison options described beneath.

{PRESENT} With {PRESENT} in the expected data file you can make clear that data of a field of the actual data should be present. This can be helpful for fields that have constant changing values. For example generated id’s.

{EMPTY} With {EMPTY} in the expected data file you can make clear that data of a field of the actual data should be absent.

{SKIP} With {SKIP} in the expected data file you can make clear that the comparison of data of a complete or part of a field of the actual data should be skipped. This can be helpful for fields or parts of fields that have constant changing values. For example time or generated id’s.

{INTEGER} With {INTEGER} in the expected data file you can make clear that the data of a field of the actual data should be an integer. This can be helpful for fields that have constant changing integer values. For example integer id’s.

{NOW()…:….} With {NOW()} in the expected data file you can make clear that the data of a field or part of a field of the actual data should be (a part of) a date. You can let calculate the current or a date in the past or future. Calculation is based on the “relativedelta” method from Python. Also you can style the date in the format you want. This can be helpful for fields that have constant changing date values, but which date values have a fixed offset linked to the current date. At “Examples comparing Actual Data with Expected Data” you can find some examples how to use it.

Delimiter Default delimiter is “,” in case of an input file. You can use the option “delimiter_actual_data” and “delimiter_expected_data” to set another delimiter like “;” or “t” for tab. It is also possible to use a multi-character delimiter like “@#@”.

Quotechar Default quotechar is ‘”’ in case of an input file. You can use the option “quotechar_actual_data” and/or “quotechar_expected_data” to set another quotechar.

Examples of using the DataComparerLibrary for comparing data in Python

Below there are some examples how to call the methods of the DataComparerLibrary in Python:

a = DataComparer
a.compare_data_files(self, actual_file, expected_file)
a.compare_data_files(self, actual_file, expected_file, delimiter_actual_data=';', delimiter_expected_data=';')
a.compare_data_files(self, actual_file, expected_file, delimiter_actual_data='@#@', delimiter_expected_data='@#@')
a.compare_data_2d_array_with_file(self, actual_2d_matrix_data_input, expected_file, delimiter_expected_data='\t')
a.compare_data_file_with_2d_array(self, actual_file, expected_2d_matrix_data_input, delimiter_actual_data=';')
a.compare_data_2d_arrays(self, actual_2d_matrix_data_input, expected_2d_matrix_data_input)

Examples of using the DataComparerLibrary keywords for comparing data in Robot Framework

Below there are some examples how to call the keywords of the DataComparerLibrary in Robot Framework:

*** Settings ***
Library     DataComparerLibrary

*** Test Cases ***
Testcase_DataComparer
    Examples

*** Keywords ***
Examples
    Run Keyword And Continue On Failure  DataComparerLibrary.Compare Data Files  C:\\Users\\actual.csv   C:\\Users\\expected.csv
    DataComparerLibrary.Compare Data Files  C:\\Users\\actual.csv   C:\\Users\\expected.csv  delimiter_actual_data=;  delimiter_expected_data=;
    DataComparerLibrary.Compare Data Files  C:\\Users\\actual.csv   C:\\Users\\expected.csv  delimiter_actual_data=@#@  delimiter_expected_data=@#@
    DataComparerLibrary.Compare Data Files  C:\\Users\\actual.csv   C:\\Users\\expected.csv
    DataComparerLibrary.Compare Data 2d Array With File  ${actual_2d_matrix_data_input}  C:\\Users\\expected.csv  delimiter_expected_data=\t
    DataComparerLibrary.Compare Data File With 2d Array  C:\\Users\\actual.csv  ${expected_2d_matrix_data_input}  delimiter_actual_data=;
    DataComparerLibrary.Compare Data 2d Arrays  ${actual_2d_matrix_data_input}  ${expected_2d_matrix_data_input}

Examples comparing Actual Data with Expected Data

Below there is an example of actual and expected data with some different cases.

Based on current datetime = 2023-09-06 19:04:00 (example):

Actual csv file or 2d-array

id

name

city

start datetime

code

password

87

John

London

2019-09-01 10:00:15

abc1

xxxxxxxx

88

Bert

Amsterdam

2023/09/06 19:02:00

xxxxxxxx

89

Klaas

Brussel

23-8-6 12:04:17

5ghi

xxxxxxxx

90

Joe

Helsinki

08062025 12:04:17

99fg

xxxxxxxx

Expected csv file or 2d-array

id

name

city

start datetime

code

password

{INTEGER}

John

London

{NOW()-4Y5D:YYYY-MM-DD}

abc1

{PRESENT}

{INTEGER}

Bert

Amsterdam

{NOW():YYYY/MM/DD} {SKIP}

{EMPTY}

{PRESENT}

{INTEGER}

Klaas

Brussel

{NOW()-1M:YY-M-D} {SKIP}

5ghi

{PRESENT}

{INTEGER}

Joe

Helsinki

{NOW()+1Y9M2D:DDMMYYYY} {SKIP}

{SKIP}

{PRESENT}

FileConverter

DataComparerLibrary keywords for preparing data in Robot Framework

Records in files can be ended by carriage return line feed (CRLF). In some situations separate line feeds (LF) are present within records. For example for an easy way of sorting records this can be a problem.

The keywords “Remove Separate Lf” and “Replace Separate Lf” support removing/replacing a separate Lf in the data from the input file. The result will be written to an output file.

Examples of using the DataComparerLibrary keywords for preparing data in Robot Framework

Below there are some examples how to call the keywords of the DataComparerLibrary in Robot Framework:

*** Settings ***
Library     DataComparerLibrary

*** Test Cases ***
Testcase_FileConverter
    Remove Separate LF From Data In File
    Replace Separated LF With Character Or String From Data In File

*** Keywords ***
Remove Separate LF From Data In File
    DataComparerLibrary.Remove Separate Lf  ${path_actual_input_files}\\input_file_with_lf.txt  ${path_actual_output_files}\\output_file_without_lf.txt


Replace Separated LF With Character Or String From Data In File
    DataComparerLibrary.Replace Separate Lf  ${input_file_with_separate_lf}   ${output_file_lf_replaced_by_character_or_string}   ${replacement_string}
    DataComparerLibrary.Replace Separate Lf  input_file_with_separate_lf.txt  output_file_lf_replaced_by_character_or_string.txt  abc
    DataComparerLibrary.Replace Separate Lf  input_file_with_separate_lf.txt  output_file_lf_replaced_by_character_or_string.txt  x
    DataComparerLibrary.Replace Separate Lf  input_file_with_separate_lf.txt  output_file_lf_replaced_by_character_or_string.txt  ${SPACE}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

DataComparerLibrary-0.824.tar.gz (16.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

DataComparerLibrary-0.824-py3-none-any.whl (14.9 kB view details)

Uploaded Python 3

File details

Details for the file DataComparerLibrary-0.824.tar.gz.

File metadata

  • Download URL: DataComparerLibrary-0.824.tar.gz
  • Upload date:
  • Size: 16.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for DataComparerLibrary-0.824.tar.gz
Algorithm Hash digest
SHA256 eea2266bfc07096fb63692a434dc60e6f756fdd850ddcfc19fc648aa95932dba
MD5 ca20e7183e9183ea00d54f411f5398e3
BLAKE2b-256 2db4acd739c32027bd9cb8ac3fef695b8dbd1a066c149b8b451fd7f6ae3c3cf1

See more details on using hashes here.

File details

Details for the file DataComparerLibrary-0.824-py3-none-any.whl.

File metadata

File hashes

Hashes for DataComparerLibrary-0.824-py3-none-any.whl
Algorithm Hash digest
SHA256 eed8591302552b394ba1b9064c9d1f16884992254229c61d2fbd766eda8774e6
MD5 8db1faebdee8f74d173ec7d81886bd71
BLAKE2b-256 12656a2603d7dbd24f672cb78a2baf78db1d6a473d40534ec1eaad107bd1bd63

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page