summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/fivefilters/readability.php/test/test-pages/001/expected.html
blob: 0998436c5ce462e4d28c8a9fb11df0608e89eaa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<section>
                        <p><strong>So finally you're <a href="http://fakehost/code/2013/testing-frontend-javascript-code-using-mocha-chai-and-sinon/">testing your frontend JavaScript code</a>? Great! The more you
write tests, the more confident you are with your code… but how much precisely?
That's where <a href="http://en.wikipedia.org/wiki/Code_coverage">code coverage</a> might
help.</strong>
                        </p>
                        <p>The idea behind code coverage is to record which parts of your code (functions,
                            statements, conditionals and so on) have been executed by your test suite,
                            to compute metrics out of these data and usually to provide tools for navigating
                            and inspecting them.</p>
                        <p>Not a lot of frontend developers I know actually test their frontend code,
                            and I can barely imagine how many of them have ever setup code coverage…
                            Mostly because there are not many frontend-oriented tools in this area
                            I guess.</p>
                        <p>Actually I've only found one which provides an adapter for <a href="http://visionmedia.github.io/mocha/">Mocha</a> and
                            actually works…</p>
                        <blockquote>
                            <p>Drinking game for web devs:
                                <br>(1) Think of a noun
                                <br>(2) Google "&lt;noun&gt;.js"
                                <br>(3) If a library with that name exists - drink</p>— Shay Friedman (@ironshay)
                            <a href="https://twitter.com/ironshay/statuses/370525864523743232">August 22, 2013</a>
                        </blockquote>
                        <p><strong><a href="http://blanketjs.org/">Blanket.js</a></strong> is an <em>easy to install, easy to configure,
and easy to use JavaScript code coverage library that works both in-browser and
with nodejs.</em>
                        </p>
                        <p>Its use is dead easy, adding Blanket support to your Mocha test suite
                            is just matter of adding this simple line to your HTML test file:</p>
<pre><code>&lt;script src="vendor/blanket.js"
        data-cover-adapter="vendor/mocha-blanket.js"&gt;&lt;/script&gt;
</code></pre>

                        <p>Source files: <a href="https://raw.github.com/alex-seville/blanket/master/dist/qunit/blanket.min.js">blanket.js</a>,
                            <a href="https://raw.github.com/alex-seville/blanket/master/src/adapters/mocha-blanket.js">mocha-blanket.js</a>
                        </p>
                        <p>As an example, let's reuse the silly <code>Cow</code> example we used
                            <a href="http://fakehost/code/2013/testing-frontend-javascript-code-using-mocha-chai-and-sinon/">in a previous episode</a>:</p>
<pre><code>// cow.js
(function(exports) {
  "use strict";

  function Cow(name) {
    this.name = name || "Anon cow";
  }
  exports.Cow = Cow;

  Cow.prototype = {
    greets: function(target) {
      if (!target)
        throw new Error("missing target");
      return this.name + " greets " + target;
    }
  };
})(this);
</code></pre>

                        <p>And its test suite, powered by Mocha and <a href="http://chaijs.com/">Chai</a>:</p>
<pre><code>var expect = chai.expect;

describe("Cow", function() {
  describe("constructor", function() {
    it("should have a default name", function() {
      var cow = new Cow();
      expect(cow.name).to.equal("Anon cow");
    });

    it("should set cow's name if provided", function() {
      var cow = new Cow("Kate");
      expect(cow.name).to.equal("Kate");
    });
  });

  describe("#greets", function() {
    it("should greet passed target", function() {
      var greetings = (new Cow("Kate")).greets("Baby");
      expect(greetings).to.equal("Kate greets Baby");
    });
  });
});
</code></pre>

                        <p>Let's create the HTML test file for it, featuring Blanket and its adapter
                            for Mocha:</p>
<pre><code>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
  &lt;meta charset="utf-8"&gt;
  &lt;title&gt;Test&lt;/title&gt;
  &lt;link rel="stylesheet" media="all" href="vendor/mocha.css"&gt;
&lt;/head&gt;
&lt;body&gt;
  &lt;div id="mocha"&gt;&lt;/div&gt;
  &lt;div id="messages"&gt;&lt;/div&gt;
  &lt;div id="fixtures"&gt;&lt;/div&gt;
  &lt;script src="vendor/mocha.js"&gt;&lt;/script&gt;
  &lt;script src="vendor/chai.js"&gt;&lt;/script&gt;
  &lt;script src="vendor/blanket.js"
          data-cover-adapter="vendor/mocha-blanket.js"&gt;&lt;/script&gt;
  &lt;script&gt;mocha.setup('bdd');&lt;/script&gt;
  &lt;script src="cow.js" data-cover&gt;&lt;/script&gt;
  &lt;script src="cow_test.js"&gt;&lt;/script&gt;
  &lt;script&gt;mocha.run();&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</code></pre>

                        <p><strong>Notes</strong>:</p>
                        <ul>
                            <li>Notice the <code>data-cover</code> attribute we added to the script tag
                                loading the source of our library;</li>
                            <li>The HTML test file <em>must</em> be served over HTTP for the adapter to
                                be loaded.</li>
                        </ul>
                        <p>Running the tests now gives us something like this:</p>
                        <p>
                            <img alt="screenshot" src="http://fakehost/static/code/2013/blanket-coverage.png">
                        </p>
                        <p>As you can see, the report at the bottom highlights that we haven't actually
                            tested the case where an error is raised in case a target name is missing.
                            We've been informed of that, nothing more, nothing less. We simply know
                            we're missing a test here. Isn't this cool? I think so!</p>
                        <p>Just remember that code coverage will only <a href="http://codebetter.com/karlseguin/2008/12/09/code-coverage-use-it-wisely/">bring you numbers</a> and
                            raw information, not actual proofs that the whole of your <em>code logic</em> has
                            been actually covered. If you ask me, the best inputs you can get about
                            your code logic and implementation ever are the ones issued out of <a href="http://www.extremeprogramming.org/rules/pair.html">pair programming</a>
sessions
                            and <a href="http://alexgaynor.net/2013/sep/26/effective-code-review/">code reviews</a> —
                            but that's another story.</p>
                        <p><strong>So is code coverage silver bullet? No. Is it useful? Definitely. Happy testing!</strong>
                        </p>
                    </section>