зеркало из https://github.com/mozilla/gecko-dev.git
94 строки
3.3 KiB
JavaScript
94 строки
3.3 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
function run_test() {
|
|
|
|
/**
|
|
* Extracts a MAR and makes sure each file matches the reference files.
|
|
*
|
|
* @param marFileName The name of the MAR file to extract
|
|
* @param files The files that the extracted MAR should contain
|
|
*/
|
|
function run_one_test(marFileName, files) {
|
|
// Get the MAR file that we will be extracting
|
|
let mar = do_get_file("data/" + marFileName);
|
|
|
|
// Get the path that we will extract to
|
|
let outDir = tempDir.clone();
|
|
outDir.append("out");
|
|
Assert.ok(!outDir.exists());
|
|
outDir.create(Ci.nsIFile.DIRECTORY_TYPE, 0o777);
|
|
|
|
// Get the ref files and the files that will be extracted.
|
|
let outFiles = [];
|
|
let refFiles = [];
|
|
for (let i = 0; i < files.length; i++) {
|
|
let outFile = outDir.clone();
|
|
outFile.append(files[i]);
|
|
Assert.ok(!outFile.exists());
|
|
|
|
outFiles.push(outFile);
|
|
refFiles.push(do_get_file("data/" + files[i]));
|
|
}
|
|
|
|
// Extract the MAR contents into the ./out dir.
|
|
extractMAR(mar, outDir);
|
|
|
|
// Compare to make sure the extracted files are the same.
|
|
for (let i = 0; i < files.length; i++) {
|
|
Assert.ok(outFiles[i].exists());
|
|
let refFileData = getBinaryFileData(refFiles[i]);
|
|
let outFileData = getBinaryFileData(outFiles[i]);
|
|
compareBinaryData(refFileData, outFileData);
|
|
}
|
|
}
|
|
|
|
// Define the unit tests to run.
|
|
let tests = {
|
|
// Test extracting a MAR file with a 0 byte file.
|
|
test_zero_sized: function _test_zero_sized() {
|
|
return run_one_test("0_sized.mar", ["0_sized_file"]);
|
|
},
|
|
// Test extracting a MAR file with a 1 byte file.
|
|
test_one_byte: function _test_one_byte() {
|
|
return run_one_test("1_byte.mar", ["1_byte_file"]);
|
|
},
|
|
// Test extracting a MAR file with binary data.
|
|
test_binary_data: function _test_binary_data() {
|
|
return run_one_test("binary_data.mar", ["binary_data_file"]);
|
|
},
|
|
// Test extracting a MAR without a product information block (PIB) which
|
|
// contains binary data.
|
|
test_no_pib: function _test_no_pib() {
|
|
return run_one_test("no_pib.mar", ["binary_data_file"]);
|
|
},
|
|
// Test extracting a MAR without a product information block (PIB) that is
|
|
// signed and which contains binary data.
|
|
test_no_pib_signed: function _test_no_pib_signed() {
|
|
return run_one_test("signed_no_pib.mar", ["binary_data_file"]);
|
|
},
|
|
// Test extracting a MAR with a product information block (PIB) that is
|
|
// signed and which contains binary data.
|
|
test_pib_signed: function _test_pib_signed() {
|
|
return run_one_test("signed_pib.mar", ["binary_data_file"]);
|
|
},
|
|
// Test extracting a MAR file with multiple files inside of it.
|
|
test_multiple_file: function _test_multiple_file() {
|
|
return run_one_test("multiple_file.mar",
|
|
["0_sized_file", "1_byte_file", "binary_data_file"]);
|
|
},
|
|
// Between each test make sure the out directory and its subfiles do
|
|
// not exist.
|
|
cleanup_per_test: function _cleanup_per_test() {
|
|
let outDir = tempDir.clone();
|
|
outDir.append("out");
|
|
if (outDir.exists()) {
|
|
outDir.remove(true);
|
|
}
|
|
}
|
|
};
|
|
|
|
// Run all the tests
|
|
Assert.equal(run_tests(tests), Object.keys(tests).length - 1);
|
|
}
|