diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-02-25 15:07:00 -0500 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 12:55:19 +0200 |
commit | eb70e6e3d0bff11c25f14b1196025791bf2308fb (patch) | |
tree | 5ef4ce17db83c74d7b05ec12c8f59e095a6dd5bd /toolkit/components/feeds/test/test_xml.js | |
parent | 32ead795290b3399d56b4708fc75b77d296f6a1a (diff) | |
download | UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.tar UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.tar.gz UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.tar.lz UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.tar.xz UXP-eb70e6e3d0bff11c25f14b1196025791bf2308fb.zip |
Issue #439 - Remove tests from toolkit/
Diffstat (limited to 'toolkit/components/feeds/test/test_xml.js')
-rw-r--r-- | toolkit/components/feeds/test/test_xml.js | 97 |
1 files changed, 0 insertions, 97 deletions
diff --git a/toolkit/components/feeds/test/test_xml.js b/toolkit/components/feeds/test/test_xml.js deleted file mode 100644 index 5bc0d759d..000000000 --- a/toolkit/components/feeds/test/test_xml.js +++ /dev/null @@ -1,97 +0,0 @@ -/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - -/* test_xml.js - * This file sets up the unit test environment by building an array of files - * to be tested. It assumes it lives in a folder adjacent to the a folder - * called 'xml', where the testcases live. - * - * The directory layout looks something like this: - * - * tests/test_xml.js* - * | - * - head.js - * | - * - xml/ -- rss1/... - * | - * -- rss2/... - * | - * -- atom/testcase.xml - * - * To add more tests, just include the file in the xml subfolder and add its name to xpcshell.ini - */ - -"use strict"; - -// Listens to feeds being loaded. Runs the tests built into the feed afterwards to veryify they -// were parsed correctly. -function FeedListener(testcase) { - this.testcase = testcase; -} - -FeedListener.prototype = { - handleResult: function(result) { - var feed = result.doc; - try { - do_print("Testing feed " + this.testcase.file.path); - Assert.ok(isIID(feed, Ci.nsIFeed), "Has feed interface"); - - if (!eval(this.testcase.expect)) { - Assert.ok(false, "expect failed for " + this.testcase.desc); - } else { - Assert.ok(true, "expect passed for " + this.testcase.desc); - } - } catch (e) { - Assert.ok(false, "expect failed for " + this.testcase.desc + " ---- " + e.message); - } - - run_next_test(); - } -} - -function createTest(data) { - return function() { - var uri; - - if (data.base == null) { - uri = NetUtil.newURI('http://example.org/' + data.path); - } else { - uri = data.base; - } - - do_print("Testing " + data.file.leafName); - - var parser = Cc["@mozilla.org/feed-processor;1"].createInstance(Ci.nsIFeedProcessor); - var stream = Cc["@mozilla.org/network/file-input-stream;1"].createInstance(Ci.nsIFileInputStream); - stream.init(data.file, 0x01, parseInt("0444", 8), 0); - parser.listener = new FeedListener(data); - - try { - parser.parseFromStream(stream, uri); - } catch (e) { - Assert.ok(false, "parse failed for " + data.file.leafName + " ---- " + e.message); - // If the parser failed, the listener won't be notified, run the next test here. - run_next_test(); - } finally { - stream.close(); - } - } -} - -function run_test() { - // Get the 'xml' directory in here - var topDir = Services.dirsvc.get("CurWorkD", Ci.nsIFile); - topDir.append("xml"); - - // Every file in the test dir contains an encapulated RSS "test". Iterate through - // them all and add them to the test runner. - iterateDir(topDir, true, file => { - var data = readTestData(file); - add_test(createTest(data)); - }); - - // Now run! - run_next_test(); -} |