I have a javascript autocomplete plugin that uses the following classes (written in coffeescript): Query, Suggestion, SuggestionCollection, and Autocomplete. Each of these classes has an associated spec written in Jasmine.

The plugin is defined within a module, e.g.:

(function(){
  // plugin...
}).call(this);

This prevents the classes from polluting the global namespace, but also hides them from any tests (specs with jasmine, or unit-tests with something like q-unit).

What is the best way to expose javascript classes or objects for testing without polluting the global namespace?

I'll answer with the solution I came up with, but I'm hoping that there is something more standard.

Update: My Attempted Solution

Because I'm a newb with < 100 xp, I can't answer my own question for 8 hours. Instead of waiting I'll just add what I did here.

In order to spec these classes, I invented a global object called _test that I exposed all the classes within for testing. For example, in coffeescript:

class Query
  // ...

class Suggestion
  // ...

// Use the classes

// Expose the classes for testing
window._test = {
  Query: Query
  Suggestion: Suggestion
}

Inside my specs, then, I can reveal the class I'm testing:

Query = window._test.Query

describe 'Query', ->
  // ...

This has the advantage that only the _test object is polluted, and it is unlikely it will collide with another definition of this object. It is still not as clean as I would like it, though. I'm hoping someone will provide a better solution.

link|improve this question
Maybe expose some internal variable, only? Example: window.exposedVars = this (inner of closure)? – David Rodrigues Dec 20 '11 at 1:20
I just added my proposed solution a few seconds after you posted this. Is it along the lines of what you were suggesting? – Mitch Dec 20 '11 at 1:30
How is your plugin useful and still not adding anything to the global namespace? I'm genuinely curious, perhaps you're doing something I'm not aware of. As far as I can tell, there always has to be at least one object that gets out into the global namespace. – Matt Greer Dec 20 '11 at 1:38
Fair question, Matt. I left this out to keep the question simple, but it is actually a jQuery plugin. The plugin code itself is trivial, and simply instantiates an Autocomplete object. So, in my case there is technically a new object exposed on $. I didn't want to expose the internal classes though. In the general case, though, a plugin could provide value by affecting the page through event callbacks without exposing anything on the global namespace, right? – Mitch Dec 20 '11 at 1:44
"a plugin could provide value by affecting the page through event callbacks without exposing anything on the global namespace". In this case your test code could fire the events or find out the registered handlers and call them directly. – Thilo Dec 20 '11 at 2:23
show 3 more comments
feedback

1 Answer

I think something like the CommonJS module system (as used by brunch, for example) would work.

You can separate your code into modules, and the parts that need them would import them via require. The only part that gets "polluted" is the module map maintained by the module management code, very similar to your test object.

In Autocomplete.coffee

class exports.Query
// ...

class exports.Suggestion
// ...

and then in Autocomplete.spec.coffee

{Query, Suggestion} = require 'app/models/Autocomplete'

describe 'Query', ->
link|improve this answer
Interesting. I hadn't looked in to this system before. I suppose it's quite similar in essence to what I did. For a light-weight plugin you want to share with others though, I'm not sure I'd want to throw in a whole module management system. Still, the brunch page is a good, relevant read. – Mitch Dec 20 '11 at 17:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.