aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/fixtures
AgeCommit message (Collapse)Author
2016-09-26fixtures: add test.m4aZhiming Wang
test.m4a contains an AAC LC stream inside an M4A (MPEG-4 Part 14) container. It is generated by FFmpeg 3.1.3 from test.wav: ffmpeg -y -i test.wav -c:a aac -profile:a aac_low -b:a 32k test.m4a test.m4a facilitates testing utilities or libraries that work with the AAC codec or the M4A container, e.g., alac.
2016-09-19Save runtime dependencies in INSTALL_RECEIPT.jsonAlyssa Ross
Fixes #930
2016-09-05Update Tap for alias_pathAlyssa Ross
2016-09-05Replace install_name/install_ref with alias_pathAlyssa Ross
2016-09-03Preserve alias when installing formulaeAlyssa Ross
Part of #567
2016-08-06Add tests for Tab versionsVlad Shablinsky
2016-07-16update: Don't report formulae that are moved within a tap but not renamed (#480)Josh Hagins
2016-04-02fix brew testsXu Cheng
Fix the `brew tests` problem caused by core/formula separation.
2016-02-25test_update_report: fix testXu Cheng
Closes Homebrew/homebrew#48546. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-07-31test_tab: add test for Tab#specXu Cheng
Fixes Homebrew/homebrew#42147. Closes Homebrew/homebrew#42205. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-04-20Our internal directory structure is privateJack Nagel
2015-03-31Fix test.pdfojab
test.pdf wasn't a valid PDF file: >$ mutool info test.pdf >test.pdf: >error: cannot recognize xref format >error: cannot read xref (ofs=406) >error: cannot read xref at offset 406 >warning: trying to repair broken xref Process it with `mutool clean` to fix errors, collapse newlines to reduce size Closes Homebrew/homebrew#38194. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-03-18fdk-aac 0.1.4David Christenson
Update to latest stable release, install example AAC encoder, add test with new WAV fixture, modernize. Closes Homebrew/homebrew#37654. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-21fixtures: add ps and eps filesXu Cheng
Closes Homebrew/homebrew#37001 Signed-off-by: Xu Cheng <xucheng@me.com>
2015-02-08Minimize test JPEG and PNGDavid Christenson
Losslessly compress with jpegoptim and optipng. Closes Homebrew/homebrew#36606. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-08Add test PDF and SVG.David Christenson
2015-01-03fixtures add test.icoXu Cheng
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-01-03replace fixture png to 8x8 in size and rgb scale colorXu Cheng
Closes Homebrew/homebrew#35456. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-01-01ID3 tags stripped from MP3 test fixtureBaptiste Fontaine
Closes Homebrew/homebrew#35427. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-01-01minimal MP3 test file addedBaptiste Fontaine
Closes Homebrew/homebrew#35417. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-10-19gifsicle 1.86Stian Eikeland
Closes Homebrew/homebrew#33307. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-10-02Use pcap fixture with complete packetsJ. Brandt Buckley
The existing `test.pcap` consists of just one Ethernet frame, so it's missing TCP/IP headers. This updated file is a full HTTP GET request and reply. Relates to Homebrew/homebrew#32852 Closes Homebrew/homebrew#32869. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-09-08test.pcap: add pcap fixture.Mike McQuaid
2014-07-31Handle tap file renames that remove a file from the formula directoryJack Nagel
2014-07-28Add test 1x1 images for formula test fixtures.Mike McQuaid
images
2014-07-26Add test for reporting tap updatesJack Nagel
2014-07-26Only populate the report with formula pathsJack Nagel
2014-07-25update: remove unused rename detectionJack Nagel
Right now this code only produces false positives. When we have real support for renames, we can implement it more carefully. Closes Homebrew/homebrew#31126.
2014-07-25update: simplify diff parsingJack Nagel
2014-06-29Get the Tab class under testJack Nagel
2014-04-24Make the on-disk representation of taps unambiguousTsukasa OMOTO
This commit supports "-" and "_" in names of user and repository. Closes Homebrew/homebrew#28203. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-11-14Add some missing test cases for `brew update`Jack Nagel
2013-07-09Properly define tapped formulae in updatephinze
A tapped formula is a ruby file present: - in the root of the tap - in directory of the tap called Formula - in a directory of the tap called HomebrewFormula And nowhere else. This corrects an overzealous definition of tapped formula in the updater. (the correct definition has been in Pathname since e613cbe5783cea2abb8100b56c22126a1ab6b9f2) Refs Homebrew/homebrew#19743. Closes Homebrew/homebrew#21087. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-04-14tests: bring `brew update` tests up to dateJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-06-14refactor `update` command to use git diff instead of parsing `pull` outputMislav Marohnić
This fixes reporting of which formulae changed in git versions where `pull` output is not compatible. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-15test_updater: Make fixture internally consistentBo Borgerson
The update_git_pull_output_with_formulae_changes fixture (which consists of mocked-up `git pull` output) listed a few files as both updated and deleted. This caused the test_update_homebrew_with_formulae_changes test to fail. My guess is that this fixture was mocked-up before formula deletion handling was introduced, and became broken when it was. This revision just makes this fixture internally consistent, and allows the associated test to pass. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-02-02Update test suite.Adam Vandenberg
* Break single test case class into several test cases. * Fix broken arch test. * Make update tests optional (seem to only work for mxcl). * Add more tests. * Move fixtures to separate folder.