summaryrefslogtreecommitdiff
path: root/modules/gallery/tests
AgeCommit message (Collapse)Author
2009-07-16Update Xss_Security_Test to know about p::purify() and checkpoint theBharat Mediratta
golden file.
2009-07-13Add quotes around all values that contain spaces in them, and add aBharat Mediratta
test to make sure that we continue to do so. This makes sure that we don't have problems with 5.3 which treats the literal "on" as a boolean.
2009-07-03Update the source so the third party code passes the File Structure TestTim Almdal
2009-06-30Checkpoint.Bharat Mediratta
2009-06-29Revert to serializing and deserializing data. The cache table can'tBharat Mediratta
accept PHP constructs like arrays (the tests were choking on this). Update tests to reflect the new `key` column.
2009-06-29Checkpoint.Bharat Mediratta
2009-06-28Clean up code (i.e. preamble, tabs) from the caching implementation so the ↵Tim Almdal
unit tests pass
2009-06-27Implemented a Database driver for the Kohana Cache library. Rather then ↵Tim Almdal
writing our own caching algorithm, we can leverage the Kohana library. This has the added advantage of allowing the administrator to replace the default caching with a 3rd party caching algorithm.
2009-06-22Update version comparison to match latest gallery module versionBharat Mediratta
2009-06-22UpdatedBharat Mediratta
2009-06-10Golden file updateBharat Mediratta
2009-06-06Update xss golden fileBharat Mediratta
2009-06-05Remove source code copy artefactAndy Staudacher
2009-06-05Update golden file of Xss testAndy Staudacher
2009-06-04Updated for csrf in admin.html.phpBharat Mediratta
2009-06-04Change "CLEAN" to an empty string to see if it's better visually.Bharat Mediratta
Looks like it is.
2009-06-04Update xss clean listBharat Mediratta
2009-06-02Improve test isolation so that Albums_Controller_Test doesn't fail when run ↵Tim Almdal
with Photos_Controller_Test
2009-06-02Restore "view" permissions on the root album in teardown.Bharat Mediratta
2009-06-02fix the xss_security_test in regards to the renaming of thumb_tag, ↵Tim Almdal
resize_tag and move_tag.
2009-05-31Update for changes to admin_users_group.html.phpBharat Mediratta
2009-05-31Updated for renamed variableBharat Mediratta
2009-05-31Merge branch 'master' of git://github.com/gallery/gallery3Bharat Mediratta
2009-05-31Xss scanner golden file. Up to date.Bharat Mediratta
2009-05-31Update the clean/dirty format, check all ffiles instead of just one (which ↵Bharat Mediratta
was for debugging)
2009-05-31First pass at an XSS security test, along with the "p" helper whichBharat Mediratta
can clean HTML output.
2009-05-31Remove the test images from the gallery module and move it to the developer ↵Tim Almdal
module in -contrib
2009-05-28Prepend all code files we copy from Gallery2 and put into var with ourBharat Mediratta
code preamble for security. Update File_Structure_Test::code_files_start_with_preamble_test to check all the php files in var, too.
2009-05-28Update tests to reflect cache-buster param on thumbnail urls.Bharat Mediratta
2009-05-28Rename Core_Installer_Test -> Gallery_Installer_Test to match theBharat Mediratta
change from application -> modules/gallery.
2009-05-27Convert a few more references of APPPATH to MODPATH/galleryBharat Mediratta
2009-05-27Update all references to the core application to now point to theBharat Mediratta
gallery module. This type of mass update is prone to some small bugs.
2009-05-27Restructure things so that the application is now just another module.Bharat Mediratta
Kohana makes this type of transition fairly straightforward in that all controllers/helpers/etc are still located in the cascading filesystem without any extra effort, except that I've temporarily added a hack to force modules/gallery into the module path. Rename what's left of "core" to be "application" so that it conforms more closely to the Kohana standard (basically, just application/config/config.php which is the minimal thing that you need in the application directory) There's still considerable work left to be done here.