Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
Yann Collet | 0d0f7e4 | 2016-05-25 10:58:11 +0200 | [diff] [blame] | 2 | """Test zstd interoperability between versions""" |
Yann Collet | 9097f7b | 2016-08-28 16:25:56 -0700 | [diff] [blame^] | 3 | # Copyright Yann Collet, Przemyslaw Skibinski and Takayuki Matsuoka |
| 4 | # License GPLv2 |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 5 | |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 6 | import filecmp |
Yann Collet | ebc13bc | 2016-05-25 10:12:39 +0200 | [diff] [blame] | 7 | import glob |
| 8 | import hashlib |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 9 | import os |
| 10 | import shutil |
| 11 | import sys |
inikep | 4545671 | 2016-06-17 13:39:43 +0200 | [diff] [blame] | 12 | import subprocess |
inikep | 7e3597b | 2016-06-17 14:43:24 +0200 | [diff] [blame] | 13 | from subprocess import Popen, PIPE |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 14 | |
| 15 | repo_url = 'https://github.com/Cyan4973/zstd.git' |
inikep | 9470b87 | 2016-06-09 12:54:06 +0200 | [diff] [blame] | 16 | tmp_dir_name = 'tests/versionsTest' |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 17 | make_cmd = 'make' |
| 18 | git_cmd = 'git' |
| 19 | test_dat_src = 'README.md' |
| 20 | test_dat = 'test_dat' |
| 21 | head = 'vdevel' |
inikep | 24aa7b4 | 2016-06-16 14:15:32 +0200 | [diff] [blame] | 22 | dict_source = 'dict_source' |
| 23 | dict_files = './zstd/programs/*.c ./zstd/lib/common/*.c ./zstd/lib/compress/*.c ./zstd/lib/decompress/*.c ./zstd/lib/dictBuilder/*.c ./zstd/lib/legacy/*.c ' |
| 24 | dict_files += './zstd/programs/*.h ./zstd/lib/common/*.h ./zstd/lib/compress/*.h ./zstd/lib/dictBuilder/*.h ./zstd/lib/legacy/*.h' |
| 25 | |
| 26 | |
inikep | 2ef1650 | 2016-06-17 14:07:42 +0200 | [diff] [blame] | 27 | def execute(command, print_output=False, print_error=True, param_shell=False): |
| 28 | popen = Popen(command, stdout=PIPE, stderr=PIPE, shell=param_shell) |
inikep | 4545671 | 2016-06-17 13:39:43 +0200 | [diff] [blame] | 29 | stdout_lines, stderr_lines = popen.communicate() |
| 30 | stderr_lines = stderr_lines.decode("utf-8") |
| 31 | stdout_lines = stdout_lines.decode("utf-8") |
inikep | 24aa7b4 | 2016-06-16 14:15:32 +0200 | [diff] [blame] | 32 | if print_output: |
| 33 | print(stdout_lines) |
inikep | 24aa7b4 | 2016-06-16 14:15:32 +0200 | [diff] [blame] | 34 | print(stderr_lines) |
inikep | 24aa7b4 | 2016-06-16 14:15:32 +0200 | [diff] [blame] | 35 | if popen.returncode is not None and popen.returncode != 0: |
| 36 | if not print_output and print_error: |
| 37 | print(stderr_lines) |
inikep | 4545671 | 2016-06-17 13:39:43 +0200 | [diff] [blame] | 38 | return popen.returncode |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 39 | |
Yann Collet | ebc13bc | 2016-05-25 10:12:39 +0200 | [diff] [blame] | 40 | |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 41 | def proc(cmd_args, pipe=True, dummy=False): |
| 42 | if dummy: |
| 43 | return |
| 44 | if pipe: |
inikep | 4545671 | 2016-06-17 13:39:43 +0200 | [diff] [blame] | 45 | subproc = Popen(cmd_args, stdout=PIPE, stderr=PIPE) |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 46 | else: |
inikep | 4545671 | 2016-06-17 13:39:43 +0200 | [diff] [blame] | 47 | subproc = Popen(cmd_args) |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 48 | return subproc.communicate() |
| 49 | |
Yann Collet | ebc13bc | 2016-05-25 10:12:39 +0200 | [diff] [blame] | 50 | |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 51 | def make(args, pipe=True): |
| 52 | return proc([make_cmd] + args, pipe) |
| 53 | |
Yann Collet | ebc13bc | 2016-05-25 10:12:39 +0200 | [diff] [blame] | 54 | |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 55 | def git(args, pipe=True): |
| 56 | return proc([git_cmd] + args, pipe) |
| 57 | |
Yann Collet | ebc13bc | 2016-05-25 10:12:39 +0200 | [diff] [blame] | 58 | |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 59 | def get_git_tags(): |
| 60 | stdout, stderr = git(['tag', '-l', 'v[0-9].[0-9].[0-9]']) |
| 61 | tags = stdout.decode('utf-8').split() |
| 62 | return tags |
| 63 | |
Yann Collet | ebc13bc | 2016-05-25 10:12:39 +0200 | [diff] [blame] | 64 | |
inikep | 150152f | 2016-06-16 19:29:09 +0200 | [diff] [blame] | 65 | def create_dict(tag, dict_source_path): |
| 66 | dict_name = 'dict.' + tag |
| 67 | if not os.path.isfile(dict_name): |
| 68 | cFiles = glob.glob(dict_source_path + "/*.c") |
| 69 | hFiles = glob.glob(dict_source_path + "/*.h") |
inikep | 7e3597b | 2016-06-17 14:43:24 +0200 | [diff] [blame] | 70 | if tag == 'v0.5.0': |
| 71 | result = execute('./dictBuilder.' + tag + ' ' + ' '.join(cFiles) + ' ' + ' '.join(hFiles) + ' -o ' + dict_name, print_output=False, param_shell=True) |
| 72 | else: |
inikep | e16f656 | 2016-06-17 15:17:35 +0200 | [diff] [blame] | 73 | result = execute('./zstd.' + tag + ' -f --train ' + ' '.join(cFiles) + ' ' + ' '.join(hFiles) + ' -o ' + dict_name, print_output=False, param_shell=True) |
inikep | 7e3597b | 2016-06-17 14:43:24 +0200 | [diff] [blame] | 74 | if result == 0: |
inikep | 4545671 | 2016-06-17 13:39:43 +0200 | [diff] [blame] | 75 | print(dict_name + ' created') |
| 76 | else: |
| 77 | print('ERROR: creating of ' + dict_name + ' failed') |
inikep | 150152f | 2016-06-16 19:29:09 +0200 | [diff] [blame] | 78 | else: |
| 79 | print(dict_name + ' already exists') |
| 80 | |
| 81 | |
| 82 | def dict_compress_sample(tag, sample): |
| 83 | dict_name = 'dict.' + tag |
inikep | 7e3597b | 2016-06-17 14:43:24 +0200 | [diff] [blame] | 84 | DEVNULL = open(os.devnull, 'wb') |
| 85 | if subprocess.call(['./zstd.' + tag, '-D', dict_name, '-f', sample], stderr=DEVNULL) == 0: |
| 86 | os.rename(sample + '.zst', sample + '_01_64_' + tag + '_dictio.zst') |
| 87 | if subprocess.call(['./zstd.' + tag, '-D', dict_name, '-5f', sample], stderr=DEVNULL) == 0: |
| 88 | os.rename(sample + '.zst', sample + '_05_64_' + tag + '_dictio.zst') |
| 89 | if subprocess.call(['./zstd.' + tag, '-D', dict_name, '-9f', sample], stderr=DEVNULL) == 0: |
| 90 | os.rename(sample + '.zst', sample + '_09_64_' + tag + '_dictio.zst') |
| 91 | if subprocess.call(['./zstd.' + tag, '-D', dict_name, '-15f', sample], stderr=DEVNULL) == 0: |
| 92 | os.rename(sample + '.zst', sample + '_15_64_' + tag + '_dictio.zst') |
| 93 | if subprocess.call(['./zstd.' + tag, '-D', dict_name, '-18f', sample], stderr=DEVNULL) == 0: |
| 94 | os.rename(sample + '.zst', sample + '_18_64_' + tag + '_dictio.zst') |
inikep | 150152f | 2016-06-16 19:29:09 +0200 | [diff] [blame] | 95 | # zstdFiles = glob.glob("*.zst*") |
| 96 | # print(zstdFiles) |
| 97 | print(tag + " : dict compression completed") |
| 98 | |
| 99 | |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 100 | def compress_sample(tag, sample): |
inikep | 7e3597b | 2016-06-17 14:43:24 +0200 | [diff] [blame] | 101 | DEVNULL = open(os.devnull, 'wb') |
Yann Collet | ebc13bc | 2016-05-25 10:12:39 +0200 | [diff] [blame] | 102 | if subprocess.call(['./zstd.' + tag, '-f', sample], stderr=DEVNULL) == 0: |
inikep | d1af4e6 | 2016-06-16 20:23:11 +0200 | [diff] [blame] | 103 | os.rename(sample + '.zst', sample + '_01_64_' + tag + '_nodict.zst') |
Yann Collet | ebc13bc | 2016-05-25 10:12:39 +0200 | [diff] [blame] | 104 | if subprocess.call(['./zstd.' + tag, '-5f', sample], stderr=DEVNULL) == 0: |
inikep | d1af4e6 | 2016-06-16 20:23:11 +0200 | [diff] [blame] | 105 | os.rename(sample + '.zst', sample + '_05_64_' + tag + '_nodict.zst') |
Yann Collet | ebc13bc | 2016-05-25 10:12:39 +0200 | [diff] [blame] | 106 | if subprocess.call(['./zstd.' + tag, '-9f', sample], stderr=DEVNULL) == 0: |
inikep | d1af4e6 | 2016-06-16 20:23:11 +0200 | [diff] [blame] | 107 | os.rename(sample + '.zst', sample + '_09_64_' + tag + '_nodict.zst') |
Yann Collet | ebc13bc | 2016-05-25 10:12:39 +0200 | [diff] [blame] | 108 | if subprocess.call(['./zstd.' + tag, '-15f', sample], stderr=DEVNULL) == 0: |
inikep | d1af4e6 | 2016-06-16 20:23:11 +0200 | [diff] [blame] | 109 | os.rename(sample + '.zst', sample + '_15_64_' + tag + '_nodict.zst') |
Yann Collet | ebc13bc | 2016-05-25 10:12:39 +0200 | [diff] [blame] | 110 | if subprocess.call(['./zstd.' + tag, '-18f', sample], stderr=DEVNULL) == 0: |
inikep | d1af4e6 | 2016-06-16 20:23:11 +0200 | [diff] [blame] | 111 | os.rename(sample + '.zst', sample + '_18_64_' + tag + '_nodict.zst') |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 112 | # zstdFiles = glob.glob("*.zst*") |
| 113 | # print(zstdFiles) |
Yann Collet | a5ad527 | 2016-06-03 15:41:51 +0200 | [diff] [blame] | 114 | print(tag + " : compression completed") |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 115 | |
Yann Collet | ebc13bc | 2016-05-25 10:12:39 +0200 | [diff] [blame] | 116 | |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 117 | # http://stackoverflow.com/a/19711609/2132223 |
| 118 | def sha1_of_file(filepath): |
| 119 | with open(filepath, 'rb') as f: |
| 120 | return hashlib.sha1(f.read()).hexdigest() |
| 121 | |
Yann Collet | ebc13bc | 2016-05-25 10:12:39 +0200 | [diff] [blame] | 122 | |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 123 | def remove_duplicates(): |
inikep | d1af4e6 | 2016-06-16 20:23:11 +0200 | [diff] [blame] | 124 | list_of_zst = sorted(glob.glob('*.zst')) |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 125 | for i, ref_zst in enumerate(list_of_zst): |
| 126 | if not os.path.isfile(ref_zst): |
| 127 | continue |
Yann Collet | 0d0f7e4 | 2016-05-25 10:58:11 +0200 | [diff] [blame] | 128 | for j in range(i + 1, len(list_of_zst)): |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 129 | compared_zst = list_of_zst[j] |
| 130 | if not os.path.isfile(compared_zst): |
| 131 | continue |
| 132 | if filecmp.cmp(ref_zst, compared_zst): |
| 133 | os.remove(compared_zst) |
| 134 | print('duplicated : {} == {}'.format(ref_zst, compared_zst)) |
| 135 | |
Yann Collet | ebc13bc | 2016-05-25 10:12:39 +0200 | [diff] [blame] | 136 | |
inikep | 7e3597b | 2016-06-17 14:43:24 +0200 | [diff] [blame] | 137 | def decompress_zst(tag): |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 138 | dec_error = 0 |
inikep | d1af4e6 | 2016-06-16 20:23:11 +0200 | [diff] [blame] | 139 | list_zst = sorted(glob.glob('*_nodict.zst')) |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 140 | for file_zst in list_zst: |
Yann Collet | 0d0f7e4 | 2016-05-25 10:58:11 +0200 | [diff] [blame] | 141 | print(file_zst, end=' ') |
| 142 | print(tag, end=' ') |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 143 | file_dec = file_zst + '_d64_' + tag + '.dec' |
inikep | 7e3597b | 2016-06-17 14:43:24 +0200 | [diff] [blame] | 144 | if tag <= 'v0.5.0': |
inikep | 24aa7b4 | 2016-06-16 14:15:32 +0200 | [diff] [blame] | 145 | params = ['./zstd.' + tag, '-df', file_zst, file_dec] |
| 146 | else: |
| 147 | params = ['./zstd.' + tag, '-df', file_zst, '-o', file_dec] |
inikep | 2ef1650 | 2016-06-17 14:07:42 +0200 | [diff] [blame] | 148 | if execute(params) == 0: |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 149 | if not filecmp.cmp(file_dec, test_dat): |
| 150 | print('ERR !! ') |
| 151 | dec_error = 1 |
| 152 | else: |
| 153 | print('OK ') |
Yann Collet | 99b23ba | 2016-05-23 15:04:14 +0200 | [diff] [blame] | 154 | else: |
| 155 | print('command does not work') |
Yann Collet | 9097f7b | 2016-08-28 16:25:56 -0700 | [diff] [blame^] | 156 | dec_error = 1 |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 157 | return dec_error |
| 158 | |
Yann Collet | da4fe74 | 2016-05-23 15:43:17 +0200 | [diff] [blame] | 159 | |
inikep | 7e3597b | 2016-06-17 14:43:24 +0200 | [diff] [blame] | 160 | def decompress_dict(tag): |
inikep | 150152f | 2016-06-16 19:29:09 +0200 | [diff] [blame] | 161 | dec_error = 0 |
inikep | d1af4e6 | 2016-06-16 20:23:11 +0200 | [diff] [blame] | 162 | list_zst = sorted(glob.glob('*_dictio.zst')) |
inikep | 150152f | 2016-06-16 19:29:09 +0200 | [diff] [blame] | 163 | for file_zst in list_zst: |
inikep | d1af4e6 | 2016-06-16 20:23:11 +0200 | [diff] [blame] | 164 | dict_tag = file_zst[0:len(file_zst)-11] # remove "_dictio.zst" |
| 165 | if head in dict_tag: # find vdevel |
inikep | 150152f | 2016-06-16 19:29:09 +0200 | [diff] [blame] | 166 | dict_tag = head |
inikep | d1af4e6 | 2016-06-16 20:23:11 +0200 | [diff] [blame] | 167 | else: |
| 168 | dict_tag = dict_tag[dict_tag.rfind('v'):] |
inikep | 7e3597b | 2016-06-17 14:43:24 +0200 | [diff] [blame] | 169 | if tag == 'v0.6.0' and dict_tag < 'v0.6.0': |
| 170 | continue |
inikep | 150152f | 2016-06-16 19:29:09 +0200 | [diff] [blame] | 171 | dict_name = 'dict.' + dict_tag |
inikep | d1af4e6 | 2016-06-16 20:23:11 +0200 | [diff] [blame] | 172 | print(file_zst + ' ' + tag + ' dict=' + dict_tag, end=' ') |
inikep | 150152f | 2016-06-16 19:29:09 +0200 | [diff] [blame] | 173 | file_dec = file_zst + '_d64_' + tag + '.dec' |
inikep | 7e3597b | 2016-06-17 14:43:24 +0200 | [diff] [blame] | 174 | if tag <= 'v0.5.0': |
inikep | 150152f | 2016-06-16 19:29:09 +0200 | [diff] [blame] | 175 | params = ['./zstd.' + tag, '-D', dict_name, '-df', file_zst, file_dec] |
| 176 | else: |
| 177 | params = ['./zstd.' + tag, '-D', dict_name, '-df', file_zst, '-o', file_dec] |
inikep | 2ef1650 | 2016-06-17 14:07:42 +0200 | [diff] [blame] | 178 | if execute(params) == 0: |
inikep | 150152f | 2016-06-16 19:29:09 +0200 | [diff] [blame] | 179 | if not filecmp.cmp(file_dec, test_dat): |
| 180 | print('ERR !! ') |
| 181 | dec_error = 1 |
| 182 | else: |
| 183 | print('OK ') |
| 184 | else: |
| 185 | print('command does not work') |
inikep | d1af4e6 | 2016-06-16 20:23:11 +0200 | [diff] [blame] | 186 | dec_error = 1 |
inikep | 150152f | 2016-06-16 19:29:09 +0200 | [diff] [blame] | 187 | return dec_error |
inikep | 24aa7b4 | 2016-06-16 14:15:32 +0200 | [diff] [blame] | 188 | |
| 189 | |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 190 | if __name__ == '__main__': |
| 191 | error_code = 0 |
inikep | 24aa7b4 | 2016-06-16 14:15:32 +0200 | [diff] [blame] | 192 | base_dir = os.getcwd() + '/..' # /path/to/zstd |
| 193 | tmp_dir = base_dir + '/' + tmp_dir_name # /path/to/zstd/tests/versionsTest |
| 194 | clone_dir = tmp_dir + '/' + 'zstd' # /path/to/zstd/tests/versionsTest/zstd |
| 195 | dict_source_path = tmp_dir + '/' + dict_source # /path/to/zstd/tests/versionsTest/dict_source |
| 196 | programs_dir = base_dir + '/programs' # /path/to/zstd/programs |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 197 | os.makedirs(tmp_dir, exist_ok=True) |
| 198 | |
| 199 | # since Travis clones limited depth, we should clone full repository |
| 200 | if not os.path.isdir(clone_dir): |
| 201 | git(['clone', repo_url, clone_dir]) |
| 202 | |
| 203 | shutil.copy2(base_dir + '/' + test_dat_src, tmp_dir + '/' + test_dat) |
| 204 | |
| 205 | # Retrieve all release tags |
| 206 | print('Retrieve all release tags :') |
| 207 | os.chdir(clone_dir) |
| 208 | tags = get_git_tags() + [head] |
Yann Collet | ebc13bc | 2016-05-25 10:12:39 +0200 | [diff] [blame] | 209 | print(tags) |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 210 | |
| 211 | # Build all release zstd |
| 212 | for tag in tags: |
| 213 | os.chdir(base_dir) |
Yann Collet | 803c05e | 2016-06-16 11:32:57 +0200 | [diff] [blame] | 214 | dst_zstd = '{}/zstd.{}'.format(tmp_dir, tag) # /path/to/zstd/tests/versionsTest/zstd.<TAG> |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 215 | if not os.path.isfile(dst_zstd) or tag == head: |
| 216 | if tag != head: |
inikep | 9470b87 | 2016-06-09 12:54:06 +0200 | [diff] [blame] | 217 | r_dir = '{}/{}'.format(tmp_dir, tag) # /path/to/zstd/tests/versionsTest/<TAG> |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 218 | os.makedirs(r_dir, exist_ok=True) |
| 219 | os.chdir(clone_dir) |
| 220 | git(['--work-tree=' + r_dir, 'checkout', tag, '--', '.'], False) |
inikep | 7e3597b | 2016-06-17 14:43:24 +0200 | [diff] [blame] | 221 | if tag == 'v0.5.0': |
| 222 | os.chdir(r_dir + '/dictBuilder') # /path/to/zstd/tests/versionsTest/v0.5.0/dictBuilder |
| 223 | make(['clean', 'dictBuilder'], False) |
| 224 | shutil.copy2('dictBuilder', '{}/dictBuilder.{}'.format(tmp_dir, tag)) |
inikep | 9470b87 | 2016-06-09 12:54:06 +0200 | [diff] [blame] | 225 | os.chdir(r_dir + '/programs') # /path/to/zstd/tests/versionsTest/<TAG>/programs |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 226 | make(['clean', 'zstd'], False) |
| 227 | else: |
| 228 | os.chdir(programs_dir) |
| 229 | make(['zstd'], False) |
| 230 | shutil.copy2('zstd', dst_zstd) |
| 231 | |
| 232 | # remove any remaining *.zst and *.dec from previous test |
| 233 | os.chdir(tmp_dir) |
| 234 | for compressed in glob.glob("*.zst"): |
| 235 | os.remove(compressed) |
Yann Collet | ebc13bc | 2016-05-25 10:12:39 +0200 | [diff] [blame] | 236 | for dec in glob.glob("*.dec"): |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 237 | os.remove(dec) |
| 238 | |
inikep | 24aa7b4 | 2016-06-16 14:15:32 +0200 | [diff] [blame] | 239 | # copy *.c and *.h to a temporary directory ("dict_source") |
| 240 | if not os.path.isdir(dict_source_path): |
| 241 | os.mkdir(dict_source_path) |
| 242 | print('cp ' + dict_files + ' ' + dict_source_path) |
inikep | 2ef1650 | 2016-06-17 14:07:42 +0200 | [diff] [blame] | 243 | execute('cp ' + dict_files + ' ' + dict_source_path, param_shell=True) |
inikep | 24aa7b4 | 2016-06-16 14:15:32 +0200 | [diff] [blame] | 244 | |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 245 | print('Compress test.dat by all released zstd') |
| 246 | |
Yann Collet | ebc13bc | 2016-05-25 10:12:39 +0200 | [diff] [blame] | 247 | error_code = 0 |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 248 | for tag in tags: |
| 249 | print(tag) |
inikep | 7e3597b | 2016-06-17 14:43:24 +0200 | [diff] [blame] | 250 | if tag >= 'v0.5.0': |
inikep | 24aa7b4 | 2016-06-16 14:15:32 +0200 | [diff] [blame] | 251 | create_dict(tag, dict_source_path) |
inikep | 150152f | 2016-06-16 19:29:09 +0200 | [diff] [blame] | 252 | dict_compress_sample(tag, test_dat) |
inikep | d1af4e6 | 2016-06-16 20:23:11 +0200 | [diff] [blame] | 253 | remove_duplicates() |
| 254 | error_code += decompress_dict(tag) |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 255 | compress_sample(tag, test_dat) |
| 256 | remove_duplicates() |
inikep | 7e3597b | 2016-06-17 14:43:24 +0200 | [diff] [blame] | 257 | error_code += decompress_zst(tag) |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 258 | |
| 259 | print('') |
| 260 | print('Enumerate different compressed files') |
| 261 | zstds = sorted(glob.glob('*.zst')) |
| 262 | for zstd in zstds: |
| 263 | print(zstd + ' : ' + repr(os.path.getsize(zstd)) + ', ' + sha1_of_file(zstd)) |
| 264 | |
| 265 | if error_code != 0: |
Yann Collet | 9097f7b | 2016-08-28 16:25:56 -0700 | [diff] [blame^] | 266 | print('====== ERROR !!! =======') |
Yann Collet | dca60f2 | 2016-05-23 14:23:55 +0200 | [diff] [blame] | 267 | |
| 268 | sys.exit(error_code) |