Skip to content

Commit

Permalink
Merge pull request #1 from segmentio/add/component
Browse files Browse the repository at this point in the history
add component support
  • Loading branch information
tj committed Dec 11, 2013
2 parents 04372a3 + 3f65a63 commit aeb69ba
Show file tree
Hide file tree
Showing 8 changed files with 5,640 additions and 13 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -1 +1,3 @@
node_modules
build
components
22 changes: 18 additions & 4 deletions Makefile
@@ -1,8 +1,22 @@

test:
@./node_modules/.bin/mocha \
--require should \
build: node_modules components index.js
@component build --dev

components: component.json
@component install --dev

clean:
@rm -fr build components node_modules

node_modules: package.json
@npm install

test: build
@./node_modules/.bin/mocha test/index.js \
--reporter dot \
--bail

.PHONY: test
test-component: build
@open test/index.html

.PHONY: clean test test-component
20 changes: 20 additions & 0 deletions component.json
@@ -0,0 +1,20 @@
{
"name": "wildcards",
"version": "1.0.0",
"repository": "segmentio/wildcards",
"description": "emitter wildcard support",
"keywords": [
"events",
"emitter",
"wildcard"
],
"dependencies": {
"component/escape-regexp": "1.0.2"
},
"development": {
"ianstormtaylor/assert": "add/node",
"component/emitter": "*"
},
"scripts": ["index.js"],
"license": "MIT"
}
3 changes: 1 addition & 2 deletions package.json
Expand Up @@ -12,8 +12,7 @@
"escape-regexp": "0.0.1"
},
"devDependencies": {
"mocha": "*",
"should": "*"
"mocha": "*"
},
"license": "MIT"
}
14 changes: 14 additions & 0 deletions test/index.html
@@ -0,0 +1,14 @@
<html>
<head>
<title>wildcards test</title>
<link rel="stylesheet" href="mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script src="mocha.js"></script>
<script>mocha.setup({ui: 'bdd'})</script>
<script src="../build/build.js"></script>
<script src="index.js"></script>
<script>mocha.run();</script>
</body>
</html>
21 changes: 14 additions & 7 deletions test/index.js
@@ -1,6 +1,13 @@

var Emitter = require('events').EventEmitter;
var wildcards = require('..');
try {
var Emitter = require('events').EventEmitter;
var wildcards = require('..');
var assert = require('assert');
} catch (e) {
var Emitter = require('emitter');
var wildcards = require('wildcards');
var assert = require('assert');
}

describe('wildcards(emitter, fn)', function(){
it('should subscribe to all events', function(){
Expand All @@ -15,7 +22,7 @@ describe('wildcards(emitter, fn)', function(){
e.emit('bar', 1);
e.emit('baz', 1, 2);

calls.should.eql([ [ 'foo' ], [ 'bar', 1 ], [ 'baz', 1, 2 ]]);
assert.deepEqual(calls, [ [ 'foo' ], [ 'bar', 1 ], [ 'baz', 1, 2 ]]);
})

it('should not break .on()', function(){
Expand All @@ -42,7 +49,7 @@ describe('wildcards(emitter, fn)', function(){
e.emit('bar', 1);
e.emit('baz', 1, 2);

calls.should.eql([[], [1], [1,2]]);
assert.deepEqual(calls, [[], [1], [1,2]]);
})
})

Expand All @@ -62,7 +69,7 @@ describe('wildcards(emitter, pattern, fn)', function(){
e.emit('user.login', 'tobi');
e.emit('user.signup', 'loki');

calls.should.eql([ [ 'user.login', 'tobi' ], [ 'user.signup', 'loki' ] ]);
assert.deepEqual(calls, [ [ 'user.login', 'tobi' ], [ 'user.signup', 'loki' ] ]);
})

it('should work with postfix segments', function(){
Expand All @@ -80,7 +87,7 @@ describe('wildcards(emitter, pattern, fn)', function(){
e.emit('user:tobi:signup', 'loki');
e.emit('user.foo.bar.baz', 'loki');

calls.should.eql([ [ 'user:tobi:signup', 'loki' ] ]);
assert.deepEqual(calls, [ [ 'user:tobi:signup', 'loki' ] ]);
})

it('should match across segments', function(){
Expand All @@ -98,7 +105,7 @@ describe('wildcards(emitter, pattern, fn)', function(){
e.emit('user:tobi:signup', 'loki');
e.emit('user:tobi:login', 'loki');

calls.should.eql([
assert.deepEqual(calls, [
[ 'user:tobi:signup', 'loki' ],
[ 'user:tobi:login', 'loki' ]
]);
Expand Down
231 changes: 231 additions & 0 deletions test/mocha.css
@@ -0,0 +1,231 @@
@charset "utf-8";

body {
font: 20px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
padding: 60px 50px;
}

#mocha ul, #mocha li {
margin: 0;
padding: 0;
}

#mocha ul {
list-style: none;
}

#mocha h1, #mocha h2 {
margin: 0;
}

#mocha h1 {
margin-top: 15px;
font-size: 1em;
font-weight: 200;
}

#mocha h1 a {
text-decoration: none;
color: inherit;
}

#mocha h1 a:hover {
text-decoration: underline;
}

#mocha .suite .suite h1 {
margin-top: 0;
font-size: .8em;
}

.hidden {
display: none;
}

#mocha h2 {
font-size: 12px;
font-weight: normal;
cursor: pointer;
}

#mocha .suite {
margin-left: 15px;
}

#mocha .test {
margin-left: 15px;
overflow: hidden;
}

#mocha .test.pending:hover h2::after {
content: '(pending)';
font-family: arial;
}

#mocha .test.pass.medium .duration {
background: #C09853;
}

#mocha .test.pass.slow .duration {
background: #B94A48;
}

#mocha .test.pass::before {
content: '✓';
font-size: 12px;
display: block;
float: left;
margin-right: 5px;
color: #00d6b2;
}

#mocha .test.pass .duration {
font-size: 9px;
margin-left: 5px;
padding: 2px 5px;
color: white;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
}

#mocha .test.pass.fast .duration {
display: none;
}

#mocha .test.pending {
color: #0b97c4;
}

#mocha .test.pending::before {
content: '◦';
color: #0b97c4;
}

#mocha .test.fail {
color: #c00;
}

#mocha .test.fail pre {
color: black;
}

#mocha .test.fail::before {
content: '✖';
font-size: 12px;
display: block;
float: left;
margin-right: 5px;
color: #c00;
}

#mocha .test pre.error {
color: #c00;
max-height: 300px;
overflow: auto;
}

#mocha .test pre {
display: block;
float: left;
clear: left;
font: 12px/1.5 monaco, monospace;
margin: 5px;
padding: 15px;
border: 1px solid #eee;
border-bottom-color: #ddd;
-webkit-border-radius: 3px;
-webkit-box-shadow: 0 1px 3px #eee;
-moz-border-radius: 3px;
-moz-box-shadow: 0 1px 3px #eee;
}

#mocha .test h2 {
position: relative;
}

#mocha .test a.replay {
position: absolute;
top: 3px;
right: 0;
text-decoration: none;
vertical-align: middle;
display: block;
width: 15px;
height: 15px;
line-height: 15px;
text-align: center;
background: #eee;
font-size: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
-webkit-transition: opacity 200ms;
-moz-transition: opacity 200ms;
transition: opacity 200ms;
opacity: 0.3;
color: #888;
}

#mocha .test:hover a.replay {
opacity: 1;
}

#mocha-report.pass .test.fail {
display: none;
}

#mocha-report.fail .test.pass {
display: none;
}

#mocha-error {
color: #c00;
font-size: 1.5 em;
font-weight: 100;
letter-spacing: 1px;
}

#mocha-stats {
position: fixed;
top: 15px;
right: 10px;
font-size: 12px;
margin: 0;
color: #888;
}

#mocha-stats .progress {
float: right;
padding-top: 0;
}

#mocha-stats em {
color: black;
}

#mocha-stats a {
text-decoration: none;
color: inherit;
}

#mocha-stats a:hover {
border-bottom: 1px solid #eee;
}

#mocha-stats li {
display: inline-block;
margin: 0 5px;
list-style: none;
padding-top: 11px;
}

code .comment { color: #ddd }
code .init { color: #2F6FAD }
code .string { color: #5890AD }
code .keyword { color: #8A6343 }
code .number { color: #2F6FAD }

0 comments on commit aeb69ba

Please sign in to comment.