test_pck_packer.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /**************************************************************************/
  2. /* test_pck_packer.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #pragma once
  31. #include "core/io/file_access_pack.h"
  32. #include "core/io/pck_packer.h"
  33. #include "core/os/os.h"
  34. #include "tests/test_utils.h"
  35. #include "thirdparty/doctest/doctest.h"
  36. namespace TestPCKPacker {
  37. TEST_CASE("[PCKPacker] Pack an empty PCK file") {
  38. PCKPacker pck_packer;
  39. const String output_pck_path = TestUtils::get_temp_path("output_empty.pck");
  40. CHECK_MESSAGE(
  41. pck_packer.pck_start(output_pck_path) == OK,
  42. "Starting a PCK file should return an OK error code.");
  43. CHECK_MESSAGE(
  44. pck_packer.flush() == OK,
  45. "Flushing the PCK should return an OK error code.");
  46. Error err;
  47. Ref<FileAccess> f = FileAccess::open(output_pck_path, FileAccess::READ, &err);
  48. CHECK_MESSAGE(
  49. err == OK,
  50. "The generated empty PCK file should be opened successfully.");
  51. CHECK_MESSAGE(
  52. f->get_length() >= 100,
  53. "The generated empty PCK file shouldn't be too small (it should have the PCK header).");
  54. CHECK_MESSAGE(
  55. f->get_length() <= 500,
  56. "The generated empty PCK file shouldn't be too large.");
  57. }
  58. TEST_CASE("[PCKPacker] Pack empty with zero alignment invalid") {
  59. PCKPacker pck_packer;
  60. const String output_pck_path = TestUtils::get_temp_path("output_empty.pck");
  61. ERR_PRINT_OFF;
  62. CHECK_MESSAGE(pck_packer.pck_start(output_pck_path, 0) != OK, "PCK with zero alignment should fail.");
  63. ERR_PRINT_ON;
  64. }
  65. TEST_CASE("[PCKPacker] Pack empty with invalid key") {
  66. PCKPacker pck_packer;
  67. const String output_pck_path = TestUtils::get_temp_path("output_empty.pck");
  68. ERR_PRINT_OFF;
  69. CHECK_MESSAGE(pck_packer.pck_start(output_pck_path, 32, "") != OK, "PCK with invalid key should fail.");
  70. ERR_PRINT_ON;
  71. }
  72. TEST_CASE("[PCKPacker] Pack a PCK file with some files and directories") {
  73. PCKPacker pck_packer;
  74. const String output_pck_path = TestUtils::get_temp_path("output_with_files.pck");
  75. CHECK_MESSAGE(
  76. pck_packer.pck_start(output_pck_path) == OK,
  77. "Starting a PCK file should return an OK error code.");
  78. const String base_dir = OS::get_singleton()->get_executable_path().get_base_dir();
  79. CHECK_MESSAGE(
  80. pck_packer.add_file("version.py", base_dir.path_join("../version.py"), "version.py") == OK,
  81. "Adding a file to the PCK should return an OK error code.");
  82. CHECK_MESSAGE(
  83. pck_packer.add_file("some/directories with spaces/to/create/icon.png", base_dir.path_join("../icon.png")) == OK,
  84. "Adding a file to a new subdirectory in the PCK should return an OK error code.");
  85. CHECK_MESSAGE(
  86. pck_packer.add_file("some/directories with spaces/to/create/icon.svg", base_dir.path_join("../icon.svg")) == OK,
  87. "Adding a file to an existing subdirectory in the PCK should return an OK error code.");
  88. CHECK_MESSAGE(
  89. pck_packer.add_file("some/directories with spaces/to/create/icon.png", base_dir.path_join("../logo.png")) == OK,
  90. "Overriding a non-flushed file to an existing subdirectory in the PCK should return an OK error code.");
  91. CHECK_MESSAGE(
  92. pck_packer.flush() == OK,
  93. "Flushing the PCK should return an OK error code.");
  94. Error err;
  95. Ref<FileAccess> f = FileAccess::open(output_pck_path, FileAccess::READ, &err);
  96. CHECK_MESSAGE(
  97. err == OK,
  98. "The generated non-empty PCK file should be opened successfully.");
  99. CHECK_MESSAGE(
  100. f->get_length() >= 18000,
  101. "The generated non-empty PCK file should be large enough to actually hold the contents specified above.");
  102. CHECK_MESSAGE(
  103. f->get_length() <= 27000,
  104. "The generated non-empty PCK file shouldn't be too large.");
  105. }
  106. } // namespace TestPCKPacker