Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Pr 11547 #14367

Merged
merged 2 commits into from
Apr 8, 2016
Merged

Pr 11547 #14367

merged 2 commits into from
Apr 8, 2016

Conversation

petebacondarwin
Copy link
Contributor

What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)

What is the current behavior? (You can also link to an open issue here)

Closes #11547
Closes #1934

What is the new behavior (if this is a feature change)?

Does this PR introduce a breaking change?

Please check if the PR fulfills these requirements

Other information:

@googlebot
Copy link

We found a Contributor License Agreement for you (the sender of this pull request) and all commit authors, but as best as we can tell these commits were authored by someone else. If that's the case, please add them to this pull request and have them confirm that they're okay with these commits being contributed to Google. If we're mistaken and you did author these commits, just reply here to confirm.

1 similar comment
@googlebot
Copy link

We found a Contributor License Agreement for you (the sender of this pull request) and all commit authors, but as best as we can tell these commits were authored by someone else. If that's the case, please add them to this pull request and have them confirm that they're okay with these commits being contributed to Google. If we're mistaken and you did author these commits, just reply here to confirm.

@petebacondarwin petebacondarwin added this to the 1.5.4 milestone Apr 4, 2016
this.addEventListener = function(name, listener) {
if (angular.isUndefined(this.$$events[name])) this.$$events[name] = [];
this.$$events[name].push(listener);
};
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am kind of confused with this snippet:

When we create a MockXhr, we set this.$$events = {}.
Then inside the mock $httpBackend, right after we create xhr = new MockXhr(), we overwrite xhr.$$events = eventHandlers (where eventHandlers is of type {[key: string]: function}).
Then, when addEventListener is called on a MockXhr instance, we check create an array on this.$$events[name] and push the listener.

I would expect the tests to fail, but they obviously don't, so what do I miss ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree this is not optimal.
The MockXhr is used in two different scenarios:

  • In the $httpBackend tests we instantiate MockXhr objects and pass them through to the $httpBackend service, which does call addEventListener. This allows us to test the "real" use of the $httpBackend service.
  • In the $http tests, we have a mock $httpBackend service (from ngMock), which happens to hold its own instance of MockXhr. In these tests we never call addEventListener and I just chose to use the same $$events object for holding our mock event handlers for the test

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see 😕
(Clarification comments welcome 😄

@gkalpak
Copy link
Member

gkalpak commented Apr 7, 2016

LGTM

@petebacondarwin petebacondarwin merged commit d497822 into angular:master Apr 8, 2016
petebacondarwin added a commit that referenced this pull request Apr 8, 2016
@benjamingr
Copy link
Contributor

I'd like to see more tests for this but overall nice work :)

@petebacondarwin
Copy link
Contributor Author

@benjamingr - what further tests would you like to see?

@benjamingr
Copy link
Contributor

Well, the only test right now is that events are passed in one way - there is a single test, I'd like to se more coverage.

I'm also not sure how users are supposed to mock it, that should probably be documented.

@petebacondarwin
Copy link
Contributor Author

@benjamingr could you be more explicit. What code paths are not being covered?

@petebacondarwin
Copy link
Contributor Author

@benjamingr Can you create a new issue for improving the documentation of mocking the events so that we can track it?

shankari added a commit to shankari/e-mission-phone that referenced this pull request Feb 8, 2021
- Add a "progress" dialog in case the upload takes a long time
    - Note that there is no progressbar in the dialog since listening to events
      was apparently only supported in angular 1.5.5
        angular/angular.js#14367
    - pass in parameters as past of the POST message that can be interpreted on the server
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Ability to react to progress events of $http XHR
6 participants