aboutsummaryrefslogtreecommitdiffstats
path: root/tests/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* Compile template pages as GResourcesCarlos Garcia Campos2013-04-051-0/+1
| | | | | | | | So that they are loaded from memory instead of disk every time they are needed. We also get rid of ephy_file searching for the files in the file system. https://bugzilla.gnome.org/show_bug.cgi?id=696792
* Get rid of EphyEmbedSingleXan Lopez2013-03-241-4/+0
| | | | | | Move the remaining initialization code to EphyEmbedShell https://bugzilla.gnome.org/show_bug.cgi?id=693703
* Fix EphyShell tests in WK2 waiting until views are loadedManuel Rego Casasnovas2013-03-131-1/+3
| | | | | | | | /src/ephy-shell/tab_load and /src/ephy-shell/tab_from_external tests were failing because of the same issue than session tests. We were not waiting till the views reach the committed load status in order to check the address. https://bugzilla.gnome.org/show_bug.cgi?id=695646
* Move methods related to view load from ephy-session-test to ephy-test-utilsManuel Rego Casasnovas2013-03-131-0/+2
| | | | | | | | In ephy-session-tests we added some methods in order to know if the EphyWebViews have been loaded or not before checking their addresses. These methods are going to be needed in more tests so they are moved to a utilities file. https://bugzilla.gnome.org/show_bug.cgi?id=695646
* Handle a bit more gracefully the self-launch detectionXan Lopez2012-12-121-1/+11
| | | | | | | Check whether the app that will launch a given download is actually the browser itself, and do nothing *before* going ahead. Seems better than actually launching and then aborting on startup through UUID hacks.
* lib: Remove unused EphySearchEntry widgetBastien Nocera2012-12-101-4/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=687744
* tests: basic tests for EphyCompletionModelXan Lopez2012-09-081-0/+4
|
* tests: some simple EphyBookmarks testsXan Lopez2012-09-081-0/+4
|
* Add code coverage supportXan Lopez2012-09-041-0/+2
| | | | | | | | | | Needs a fairly recent gnome-common. To use do: - Run configure with --enable-code-coverage - Type 'make check-code-coverage' - Open the HTML results https://bugzilla.gnome.org/show_bug.cgi?id=683297
* Add basic tests for EphySnapshotServiceClaudio Saavedra2012-09-011-0/+4
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=668578
* ephy-string: improve a bit ephy_string_get_host_nameXan Lopez2012-08-171-0/+4
| | | | And add unit tests for it.
* extensions: remove seed supportDiego Escalante Urrelo2012-07-311-7/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=680905
* tests: add a simple test for EphyEncodingsXan Lopez2012-07-311-0/+4
|
* tests: add ephy-shell-testDiego Escalante Urrelo2012-06-151-0/+6
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673683
* tests: add ephy-web-app-utils-testDiego Escalante Urrelo2012-06-151-0/+4
| | | | | | | Tests create, exists, delete, list API. No network access required. https://bugzilla.gnome.org/show_bug.cgi?id=673271
* tests: add the beginnings of ephy-session unit testingXan Lopez2012-06-141-0/+6
| | | | | | | | | For now a simple test that verifies that loading a session works. We need to link with the resource files, which is unfortunate, but I'm not sure there's a way around it since this test will actually spawn a full EphyWindow (ie, it's not only testing the session or shell code but the entire browser as a side effect).
* tests: include tests/data/ in distDiego Escalante Urrelo2012-05-241-0/+2
| | | | Otherwise tests using its contents will fail on distcheck.
* tests: add ephy-file-helpers-testDiego Escalante Urrelo2012-05-241-0/+7
| | | | | | | | | | Test API for file switch, tmp file creation, downloads, desktop directories. Take two of this test. Updated for ephy-file-helpers API changes. Previously reverted on 185ab751c20a825f832efd89a7cfbd75fa09e20c. https://bugzilla.gnome.org/show_bug.cgi?id=673337
* tests: start tests for the migration codeXan Lopez2012-05-101-0/+4
| | | | | Trivial first test, we just check the migration binary runs and does not catastrophically.
* Revert "tests: add ephy-file-helpers-test"Xan Lopez2012-05-021-7/+0
| | | | | | This reverts commit d1ba46b3f4a4e2afbffe5a0ab2543462caea0bbe. Does not pass distcheck and I need to release.
* tests: add ephy-file-helpers-testDiego Escalante Urrelo2012-04-301-0/+7
| | | | | | | Test API for file switch, tmp file creation, downloads, desktop directories. https://bugzilla.gnome.org/show_bug.cgi?id=673337
* tests: add ephy-web-view testDiego Escalante Urrelo2012-03-111-0/+4
| | | | | | Testing ephy_web_view_load_url and the internal GRegex of EphyWebView. https://bugzilla.gnome.org/show_bug.cgi?id=669548
* Rename the new tests to be foo-test.cXan Lopez2012-03-071-2/+2
|
* Add EphyHistoryService and helper classesXan Lopez2012-03-071-0/+6
| | | | | | | | | EphyHistoryService provides a high-level API to store history information. It will processed by a worker thread using SQLite to provide a fast, responsive service to the main UI. Based on the code by Martin Robinson (mrobinson@igalia.com) and Claudio Saavedra (csaavedra@igalia.com).
* Add GObject wrapper classes for SQLiteXan Lopez2012-03-071-0/+4
| | | | | | | We'll use them to implement the new history/bookmarks storage backend. Code by Martin Robinson (mrobinson@igalia.com) and Claudio Saavedra (csaavedra@igalia.com)
* tests: terminate noinst_PROGRAMS with NULLDiego Escalante Urrelo2012-02-111-1/+2
| | | | | | To avoid trivial line changes, ironically. https://bugzilla.gnome.org/show_bug.cgi?id=669766
* tests: rename files to avoid duplicate namesDiego Escalante Urrelo2012-02-111-5/+5
| | | | | | | Append -test to .c files in tests/ to avoid duplicating filenames in the repository. https://bugzilla.gnome.org/show_bug.cgi?id=669766
* tests: add test for ephy-embed-utilsDiego Escalante Urrelo2012-02-081-0/+4
| | | | | | | Specifically ephy_embed_utils_address_has_web_scheme. Based on a patch by Alexandre Martani. https://bugzilla.gnome.org/show_bug.cgi?id=613756
* tests: run all the tests on 'make check'Xan Lopez2012-01-261-0/+71
| | | | Which tells us that test-ephy-download is broken.
* ephy-zoom-control: remove, there are no zoom toolbar items anymoreXan Lopez2011-12-151-5/+1
|
* ephy-download: add the new EphyDownload objectDiego Escalante Urrelo2011-03-081-3/+3
| | | | | | | | | | | | | | | | | EphyDownload is a wrapper object around WebKitDownload that handles common behavior in downloads: auto-destination, default action for the MIME type. It can be used to wrap a WebKitDownload coming from a WebKitView or to download a url: ephy_download_new_for_uri and ephy_download_new_for_download are provided. Its lifetime is not automagic like EphyEmbedPersist, so you have to unref it when you no longer need it. This new object replaces EphyEmbedPersist and enables us to use a single codepath for downloads in all Epiphany. Bug #618443
* tests: clean up filenamesDiego Escalante Urrelo2010-12-191-15/+15
| | | | Make filenames readable and tab-completion friendly.
* ephy-profile-migration: separate migration code into another binaryDiego Escalante Urrelo2010-12-071-7/+0
| | | | | | | | | | | The migration code is now in the ephy-profile-migrator binary, this means: - epiphany is not linking to NSS anymore - lib/ephy-profile-migration.c was split into: + lib/ephy-profile-migrator.c: the new ephy-profile-migrator binary + lib/ephy-profile-utils.c: convenience _ephy_profile_*_form_auth_data functions. - testing for migration is done without running ephy-profile-migrator Bug #636685
* tests: DBUS_LIBS is needed for libephymain.laDiego Escalante Urrelo2010-11-011-0/+1
|
* tests: fix wrong variable name in MakefileDiego Escalante Urrelo2010-06-041-5/+5
|
* tests: add test for ephy-embed-singleDiego Escalante Urrelo2010-05-141-1/+5
|
* tests: add test for EphyEmbedPersistDiego Escalante Urrelo2010-02-261-0/+4
| | | | Bug #600987
* tests: simplify Makefile.amDiego Escalante Urrelo2010-01-221-15/+25
| | | | Don't cherry pick internal libraries for tests.
* Delete EphyIconEntry, it's unused.Xan Lopez2008-12-311-7/+0
| | | | svn path=/trunk/; revision=8655
* Add testephyzoomcontrol.cDiego Escalante Urrelo2008-11-301-1/+9
| | | | svn path=/trunk/; revision=8621
* tests: fix compilation when builddir != srcdirXan Lopez2008-10-141-2/+2
| | | | svn path=/trunk/; revision=8581
* Add testephylocationentry.cDiego Escalante Urrelo2008-09-291-5/+15
| | | | | | See the FIXME about the mystery crasher, it's probably some kind of leak. svn path=/trunk/; revision=8552
* Revert "Makefile fixes."Diego Escalante Urrelo2008-09-291-27/+13
| | | | | | This reverts commit 58afaf81fbf64dfcb779ef2e7531afb4c11693e1. svn path=/trunk/; revision=8551
* Makefile fixes.Christian Persch2008-08-301-13/+27
| | | | svn path=/trunk/; revision=8439
* Add testephyiconentry.c to tests/Diego Escalante Urrelo2008-08-041-7/+15
| | | | | | Part of #544642. svn path=/trunk/; revision=8385
* Add the base for tests/ support.Diego Escalante Urrelo2008-08-041-0/+18
Include a test for ephysearchentry, need to make them optional too. Part of #544642. svn path=/trunk/; revision=8384