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