├── .gitattributes ├── .github └── workflows │ ├── main.yml │ └── v4.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin └── console ├── codecov.yml ├── composer.json ├── composer.lock ├── phpdoc.dist.xml ├── phpunit.xml.dist ├── src ├── AbstractManifest.php ├── Bag.php ├── BagUtils.php ├── Commands │ └── ValidateCommand.php ├── CurlInstance.php ├── DownloadFile.php ├── Exceptions │ ├── BagItException.php │ ├── FilesystemException.php │ └── ProfileException.php ├── Fetch.php ├── PayloadManifest.php ├── Profiles │ ├── BagItProfile.php │ ├── ProfileFactory.php │ └── ProfileTags.php └── TagManifest.php └── tests ├── BagInternalTest.php ├── BagItTestFramework.php ├── BagItWebserverFramework.php ├── BagTest.php ├── BagUtilsTest.php ├── CommandTest.php ├── CurlInstanceTest.php ├── DownloadFileTest.php ├── ExtendedBagTest.php ├── FetchTest.php ├── ManifestTest.php ├── Profiles ├── BagItProfileBarTest.php ├── BagItProfileFooTest.php ├── BagProfileTest.php ├── InternalProfileTest.php ├── ProfileTagTest.php ├── ProfileTestFramework.php └── ProfileWebTests.php └── resources ├── Test097Bag ├── bag-info.txt ├── bagit.txt ├── data │ └── thepayload.txt ├── manifest-md5.txt └── tagmanifest-md5.txt ├── TestBadFilePathsBag ├── bagit.txt ├── data │ └── file-with-%-and-%25-fails.txt └── manifest-sha256.txt ├── TestBag ├── bagit.txt ├── data │ ├── jekyll_and_hyde.txt │ └── pictures │ │ ├── another_picture.txt │ │ └── some_more_data.txt └── manifest-sha256.txt ├── TestEncodingBag ├── bagit.txt ├── data │ └── File-with-%0A-name.txt └── manifest-sha256.txt ├── TestExtendedBag ├── alt_tags │ └── random_tags.txt ├── bag-info.txt ├── bagit.txt ├── data │ ├── houses-of-parliament.jpg │ └── texts │ │ └── A Christmas Carol.txt ├── manifest-sha1.txt └── tagmanifest-sha1.txt ├── bag-infos ├── invalid-leading-spaces.txt └── long-lines-and-line-returns.txt ├── fetchFiles ├── bad-encoding.txt ├── fetch-CR.txt ├── fetch-CRLF.txt ├── fetch-LF.txt ├── good-encoded-file-paths.txt ├── letters-in-size.txt ├── not-http-urls.txt └── path-outside-data.txt ├── images └── scenic-landscape.jpg ├── manifests ├── TestBag-manifest-CR-sha256.txt ├── TestBag-manifest-CRLF-sha256.txt ├── manifest-with-case-insensitive-duplicates-sha256.txt ├── manifest-with-duplicate-lines-sha256.txt └── manifest-with-relative-paths-sha256.txt ├── profiles ├── bagProfileBar.json ├── bagProfileFoo.json ├── btrProfile.json └── test-profile-bag.json ├── tagFiles └── SomeSpecialTags.txt ├── testtar.tar.bz2 ├── testtar.tgz ├── testzip.zip ├── text └── empty.txt └── webserver_responses ├── remote_file1.txt ├── remote_file2.txt ├── remote_file3.txt └── remote_file4.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | *.php eol=lf 3 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/v4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/.github/workflows/v4.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/README.md -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/bin/console -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/codecov.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/composer.lock -------------------------------------------------------------------------------- /phpdoc.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/phpdoc.dist.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/AbstractManifest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/src/AbstractManifest.php -------------------------------------------------------------------------------- /src/Bag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/src/Bag.php -------------------------------------------------------------------------------- /src/BagUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/src/BagUtils.php -------------------------------------------------------------------------------- /src/Commands/ValidateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/src/Commands/ValidateCommand.php -------------------------------------------------------------------------------- /src/CurlInstance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/src/CurlInstance.php -------------------------------------------------------------------------------- /src/DownloadFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/src/DownloadFile.php -------------------------------------------------------------------------------- /src/Exceptions/BagItException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/src/Exceptions/BagItException.php -------------------------------------------------------------------------------- /src/Exceptions/FilesystemException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/src/Exceptions/FilesystemException.php -------------------------------------------------------------------------------- /src/Exceptions/ProfileException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/src/Exceptions/ProfileException.php -------------------------------------------------------------------------------- /src/Fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/src/Fetch.php -------------------------------------------------------------------------------- /src/PayloadManifest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/src/PayloadManifest.php -------------------------------------------------------------------------------- /src/Profiles/BagItProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/src/Profiles/BagItProfile.php -------------------------------------------------------------------------------- /src/Profiles/ProfileFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/src/Profiles/ProfileFactory.php -------------------------------------------------------------------------------- /src/Profiles/ProfileTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/src/Profiles/ProfileTags.php -------------------------------------------------------------------------------- /src/TagManifest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/src/TagManifest.php -------------------------------------------------------------------------------- /tests/BagInternalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/BagInternalTest.php -------------------------------------------------------------------------------- /tests/BagItTestFramework.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/BagItTestFramework.php -------------------------------------------------------------------------------- /tests/BagItWebserverFramework.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/BagItWebserverFramework.php -------------------------------------------------------------------------------- /tests/BagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/BagTest.php -------------------------------------------------------------------------------- /tests/BagUtilsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/BagUtilsTest.php -------------------------------------------------------------------------------- /tests/CommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/CommandTest.php -------------------------------------------------------------------------------- /tests/CurlInstanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/CurlInstanceTest.php -------------------------------------------------------------------------------- /tests/DownloadFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/DownloadFileTest.php -------------------------------------------------------------------------------- /tests/ExtendedBagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/ExtendedBagTest.php -------------------------------------------------------------------------------- /tests/FetchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/FetchTest.php -------------------------------------------------------------------------------- /tests/ManifestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/ManifestTest.php -------------------------------------------------------------------------------- /tests/Profiles/BagItProfileBarTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/Profiles/BagItProfileBarTest.php -------------------------------------------------------------------------------- /tests/Profiles/BagItProfileFooTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/Profiles/BagItProfileFooTest.php -------------------------------------------------------------------------------- /tests/Profiles/BagProfileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/Profiles/BagProfileTest.php -------------------------------------------------------------------------------- /tests/Profiles/InternalProfileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/Profiles/InternalProfileTest.php -------------------------------------------------------------------------------- /tests/Profiles/ProfileTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/Profiles/ProfileTagTest.php -------------------------------------------------------------------------------- /tests/Profiles/ProfileTestFramework.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/Profiles/ProfileTestFramework.php -------------------------------------------------------------------------------- /tests/Profiles/ProfileWebTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/Profiles/ProfileWebTests.php -------------------------------------------------------------------------------- /tests/resources/Test097Bag/bag-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/Test097Bag/bag-info.txt -------------------------------------------------------------------------------- /tests/resources/Test097Bag/bagit.txt: -------------------------------------------------------------------------------- 1 | BagIt-Version: 0.97 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /tests/resources/Test097Bag/data/thepayload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/Test097Bag/data/thepayload.txt -------------------------------------------------------------------------------- /tests/resources/Test097Bag/manifest-md5.txt: -------------------------------------------------------------------------------- 1 | f5aef027e4d215a70600f7fcc934a3a2 data/thepayload.txt 2 | -------------------------------------------------------------------------------- /tests/resources/Test097Bag/tagmanifest-md5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/Test097Bag/tagmanifest-md5.txt -------------------------------------------------------------------------------- /tests/resources/TestBadFilePathsBag/bagit.txt: -------------------------------------------------------------------------------- 1 | BagIt-Version: 1.0 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /tests/resources/TestBadFilePathsBag/data/file-with-%-and-%25-fails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/TestBadFilePathsBag/data/file-with-%-and-%25-fails.txt -------------------------------------------------------------------------------- /tests/resources/TestBadFilePathsBag/manifest-sha256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/TestBadFilePathsBag/manifest-sha256.txt -------------------------------------------------------------------------------- /tests/resources/TestBag/bagit.txt: -------------------------------------------------------------------------------- 1 | BagIt-Version: 1.0 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /tests/resources/TestBag/data/jekyll_and_hyde.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/TestBag/data/jekyll_and_hyde.txt -------------------------------------------------------------------------------- /tests/resources/TestBag/data/pictures/another_picture.txt: -------------------------------------------------------------------------------- 1 | This is a beautiful sunset 2 | -------------------------------------------------------------------------------- /tests/resources/TestBag/data/pictures/some_more_data.txt: -------------------------------------------------------------------------------- 1 | This is a fluffy puppy 2 | -------------------------------------------------------------------------------- /tests/resources/TestBag/manifest-sha256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/TestBag/manifest-sha256.txt -------------------------------------------------------------------------------- /tests/resources/TestEncodingBag/bagit.txt: -------------------------------------------------------------------------------- 1 | BagIt-Version: 1.0 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /tests/resources/TestEncodingBag/data/File-with-%0A-name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/TestEncodingBag/data/File-with-%0A-name.txt -------------------------------------------------------------------------------- /tests/resources/TestEncodingBag/manifest-sha256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/TestEncodingBag/manifest-sha256.txt -------------------------------------------------------------------------------- /tests/resources/TestExtendedBag/alt_tags/random_tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/TestExtendedBag/alt_tags/random_tags.txt -------------------------------------------------------------------------------- /tests/resources/TestExtendedBag/bag-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/TestExtendedBag/bag-info.txt -------------------------------------------------------------------------------- /tests/resources/TestExtendedBag/bagit.txt: -------------------------------------------------------------------------------- 1 | BagIt-Version: 1.0 2 | Tag-File-Character-Encoding: UTF-8 3 | -------------------------------------------------------------------------------- /tests/resources/TestExtendedBag/data/houses-of-parliament.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/TestExtendedBag/data/houses-of-parliament.jpg -------------------------------------------------------------------------------- /tests/resources/TestExtendedBag/data/texts/A Christmas Carol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/TestExtendedBag/data/texts/A Christmas Carol.txt -------------------------------------------------------------------------------- /tests/resources/TestExtendedBag/manifest-sha1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/TestExtendedBag/manifest-sha1.txt -------------------------------------------------------------------------------- /tests/resources/TestExtendedBag/tagmanifest-sha1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/TestExtendedBag/tagmanifest-sha1.txt -------------------------------------------------------------------------------- /tests/resources/bag-infos/invalid-leading-spaces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/bag-infos/invalid-leading-spaces.txt -------------------------------------------------------------------------------- /tests/resources/bag-infos/long-lines-and-line-returns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/bag-infos/long-lines-and-line-returns.txt -------------------------------------------------------------------------------- /tests/resources/fetchFiles/bad-encoding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/fetchFiles/bad-encoding.txt -------------------------------------------------------------------------------- /tests/resources/fetchFiles/fetch-CR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/fetchFiles/fetch-CR.txt -------------------------------------------------------------------------------- /tests/resources/fetchFiles/fetch-CRLF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/fetchFiles/fetch-CRLF.txt -------------------------------------------------------------------------------- /tests/resources/fetchFiles/fetch-LF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/fetchFiles/fetch-LF.txt -------------------------------------------------------------------------------- /tests/resources/fetchFiles/good-encoded-file-paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/fetchFiles/good-encoded-file-paths.txt -------------------------------------------------------------------------------- /tests/resources/fetchFiles/letters-in-size.txt: -------------------------------------------------------------------------------- 1 | http://example.org/whatever lots data/pictures.jpg 2 | -------------------------------------------------------------------------------- /tests/resources/fetchFiles/not-http-urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/fetchFiles/not-http-urls.txt -------------------------------------------------------------------------------- /tests/resources/fetchFiles/path-outside-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/fetchFiles/path-outside-data.txt -------------------------------------------------------------------------------- /tests/resources/images/scenic-landscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/images/scenic-landscape.jpg -------------------------------------------------------------------------------- /tests/resources/manifests/TestBag-manifest-CR-sha256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/manifests/TestBag-manifest-CR-sha256.txt -------------------------------------------------------------------------------- /tests/resources/manifests/TestBag-manifest-CRLF-sha256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/manifests/TestBag-manifest-CRLF-sha256.txt -------------------------------------------------------------------------------- /tests/resources/manifests/manifest-with-case-insensitive-duplicates-sha256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/manifests/manifest-with-case-insensitive-duplicates-sha256.txt -------------------------------------------------------------------------------- /tests/resources/manifests/manifest-with-duplicate-lines-sha256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/manifests/manifest-with-duplicate-lines-sha256.txt -------------------------------------------------------------------------------- /tests/resources/manifests/manifest-with-relative-paths-sha256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/manifests/manifest-with-relative-paths-sha256.txt -------------------------------------------------------------------------------- /tests/resources/profiles/bagProfileBar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/profiles/bagProfileBar.json -------------------------------------------------------------------------------- /tests/resources/profiles/bagProfileFoo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/profiles/bagProfileFoo.json -------------------------------------------------------------------------------- /tests/resources/profiles/btrProfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/profiles/btrProfile.json -------------------------------------------------------------------------------- /tests/resources/profiles/test-profile-bag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/profiles/test-profile-bag.json -------------------------------------------------------------------------------- /tests/resources/tagFiles/SomeSpecialTags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/tagFiles/SomeSpecialTags.txt -------------------------------------------------------------------------------- /tests/resources/testtar.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/testtar.tar.bz2 -------------------------------------------------------------------------------- /tests/resources/testtar.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/testtar.tgz -------------------------------------------------------------------------------- /tests/resources/testzip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/testzip.zip -------------------------------------------------------------------------------- /tests/resources/text/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/webserver_responses/remote_file1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/webserver_responses/remote_file1.txt -------------------------------------------------------------------------------- /tests/resources/webserver_responses/remote_file2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/webserver_responses/remote_file2.txt -------------------------------------------------------------------------------- /tests/resources/webserver_responses/remote_file3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/webserver_responses/remote_file3.txt -------------------------------------------------------------------------------- /tests/resources/webserver_responses/remote_file4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whikloj/BagItTools/HEAD/tests/resources/webserver_responses/remote_file4.txt --------------------------------------------------------------------------------