9

I love the partial object matching that jasmine.objectContaining provides:

mySpy({
   foo: 'bar',
   bar: 'baz' 
});
expect(mySpy).toHaveBeenCalledWith(jasmine.objectContaining({ foo: 'bar' }));

Is there a jasmine equivalent for strings? something along the lines of:

mySpy('fooBar', 'barBaz');
expect(mySpy).toHaveBeenCalledWith(jasmine.stringContaining('foo'), jasmine.any(String));

I'd like to look at a specific argument without resorting to assertions off mySpy.calls:

mySpy('fooBar', 'barBaz');
expect(mySpy.calls.argsFor(0)[0]).toContain('foo');
robbmj
  • 16,085
  • 8
  • 38
  • 63
iwoodruff
  • 157
  • 1
  • 3
  • 10
  • Possible duplicate of [Is it possible to use Jasmine's toHaveBeenCalledWith matcher with a regular expression?](https://stackoverflow.com/questions/14841115/is-it-possible-to-use-jasmines-tohavebeencalledwith-matcher-with-a-regular-expr) – jannis Jul 10 '17 at 13:29

3 Answers3

12

As of Jasmine 2.2, you can use jasmine.stringMatching.

For your example:

mySpy('fooBar', 'barBaz');
expect(mySpy).toHaveBeenCalledWith(jasmine.stringMatching('foo'), jasmine.any(String));

Note that the argument is a regex to be matched. For simple "contains", pass the string directly (with special regex chars escaped), but it can do much more:

// Expect first parameter to be a string *starting* with "foo"
expect(mySpy).toHaveBeenCalledWith(jasmine.stringMatching(/^foo/), jasmine.any(String));
River
  • 8,585
  • 14
  • 54
  • 67
3

There isn't anything of this sort in Jasmine. But you can leverage the ability of creating a custom matcher in Jasmine for this.

Here's a small working example:

Your Factories

angular.module('CustomMatchers', []).factory('AnotherService', function(){
    return{  mySpy: function(a, b){ } }
});

angular.module('CustomMatchers').factory('MyService', function(AnotherService){
    return{ 
        myFunction: function(a, b){
            AnotherService.mySpy(a, b);
        }
    }
});

Your test case with a custom matcher

describe('Service: MyService', function() {
    beforeEach(module('CustomMatchers'));
    describe('service: MyService', function() {

        beforeEach(inject(function(_MyService_, _AnotherService_) {
            MyService = _MyService_;
            AnotherService = _AnotherService_;

            spyOn(AnotherService, 'mySpy');

            jasmine.addMatchers({
                toContain: function() {
                    return {
                        compare: function(actual, expected){
                            var result = { pass: actual.includes(expected) };
                            if(result.pass) {
                                result.message =  "Success: Expected first arguments '" + actual + "' to contain '"+ expected +"'.";
                            } else {
                                result.message =  "Failour: Expected first arguments '" + actual + "' to contain '"+ expected +"'.";
                            }
                            return result;
                        }
                    }
                }
            });

        }));

        it('expect AnotherService.mySpy toHaveBeenCalled', function() {
            MyService.myFunction('fooBar', 'barBaz');
            //This should pass
            expect(AnotherService.mySpy.calls.argsFor(0)[0]).toContain('foo');

            //This should fail
            expect(AnotherService.mySpy.calls.argsFor(0)[0]).toContain('helloWorld');
        });
    });
});

Hope this helps!

SiddAjmera
  • 38,129
  • 5
  • 72
  • 110
-1

You can do like this with toString() and match() functions

    expect(control.errors.pattern.requiredPattern).toString().match('^[+]*[(]{0,1}[0-9]{1,4}[)]{0,1}[-\S\./0-9]*$');
Shabeer M
  • 160
  • 3
  • 9