test: Remove shell-script version of new test, and move Rust version to a new file

This commit is contained in:
Chris Hennick 2024-07-05 09:04:12 -07:00
parent 955ea393ee
commit 80b0025831
No known key found for this signature in database
GPG key ID: DA47AABA4961C509
3 changed files with 23 additions and 65 deletions

23
tests/extract_symlink.rs Normal file
View file

@ -0,0 +1,23 @@
#[test]
#[cfg(unix)]
fn extract_should_respect_links(){
use std::{fs, io, path::PathBuf, str::FromStr};
use tempdir::TempDir;
use zip::ZipArchive;
let mut v = Vec::new();
v.extend_from_slice(include_bytes!("data/pandoc_soft_links.zip"));
let mut archive = ZipArchive::new(io::Cursor::new(v)).expect("couldn't open test zip file");
let temp_dir = TempDir::new("pandoc_soft_links").unwrap();
archive.extract(&temp_dir).unwrap();
let symlink_path = temp_dir.path().join("pandoc-3.2-arm64/bin/pandoc-lua");
// Read the target of the symbolic link
let target_path = fs::read_link(&symlink_path).unwrap();
assert_eq!(target_path, PathBuf::from_str("pandoc").unwrap());
}

View file

@ -1,7 +1,3 @@
use std::{fs, path::PathBuf, str::FromStr};
use walkdir::WalkDir;
#[cfg(all(unix, feature = "_deflate-any"))]
#[test]
fn repro_old423() -> zip::result::ZipResult<()> {
@ -14,27 +10,3 @@ fn repro_old423() -> zip::result::ZipResult<()> {
let mut archive = ZipArchive::new(io::Cursor::new(v)).expect("couldn't open test zip file");
archive.extract(TempDir::new("repro_old423")?)
}
#[test]
#[cfg(unix)]
fn extract_should_respect_links(){
use std::io;
use tempdir::TempDir;
use zip::ZipArchive;
let mut v = Vec::new();
v.extend_from_slice(include_bytes!("data/pandoc_soft_links.zip"));
let mut archive = ZipArchive::new(io::Cursor::new(v)).expect("couldn't open test zip file");
let temp_dir = TempDir::new("pandoc_soft_links").unwrap();
archive.extract(&temp_dir).unwrap();
let symlink_path = temp_dir.path().join("pandoc-3.2-arm64/bin/pandoc-lua");
// Read the target of the symbolic link
let target_path = fs::read_link(&symlink_path).unwrap();
assert_eq!(target_path, PathBuf::from_str("pandoc").unwrap());
}

View file

@ -1,37 +0,0 @@
#!/bin/bash
# Check if a zip file is provided as an argument
if [ -z "$1" ]; then
echo "Usage: $0 <path_to_zip_file>"
exit 1
fi
ZIP_FILE=$1
TEMP_DIR=$(mktemp -d)
# Unpack the zip file to the temporary directory
unzip "$ZIP_FILE" -d "$TEMP_DIR"
# Define the path to the symbolic link
SYMLINK_PATH="$TEMP_DIR/pandoc-3.2-arm64/bin/pandoc-lua"
# Check if the symbolic link exists
if [ -L "$SYMLINK_PATH" ]; then
# Read the target of the symbolic link
TARGET=$(readlink "$SYMLINK_PATH")
echo "The symbolic link $SYMLINK_PATH points to: $TARGET"
# Assert that it links to 'pandoc'
if [ "$TARGET" == "pandoc" ]; then
echo "Assertion passed: The symbolic link points to 'pandoc'."
else
echo "Assertion failed: The symbolic link does not point to 'pandoc'."
exit 1
fi
else
echo "The file $SYMLINK_PATH is not a symbolic link or does not exist."
exit 1
fi
# Clean up the temporary directory
rm -rf "$TEMP_DIR"