Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add XMLHttpRequestUpload support #26

Closed
wants to merge 1 commit into from

Conversation

snstanton
Copy link
Contributor

  • factor out MockEventTarget base class
  • add upload property to MockXMLHttpRequest
  • add uploadProgress() method to MockRequest
  • update readme to reflect new api
  • fix readme to describe .progress() on the proper object

* factor out MockEventTarget base class
* add upload property to MockXMLHttpRequest
* add uploadProgress() method to MockRequest
* update readme to reflect new api
* fix readme to describe .progress() on the proper object
Copy link
Owner

@jameslnewell jameslnewell left a comment

Choose a reason for hiding this comment

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

Thanks for taking the time to contribute a PR! Please review the few minor comments.

* @param {Object} eventDetails
* @returns {MockEventTarget}
*/
MockEventTarget.prototype.trigger = function(event, eventDetails) {
Copy link
Owner

Choose a reason for hiding this comment

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

should this be dispatchEvent?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

trigger seems clear enough

@@ -171,6 +165,8 @@ MockXMLHttpRequest.prototype.send = function(data) {
}, typeof(timeout) === 'number' ? timeout : self.timeout+1);

} else {
//trigger a load event to indicate the data has been sent
self.upload.trigger('load');
Copy link
Owner

Choose a reason for hiding this comment

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

onloadstart too? https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/upload

we should probably dispatch the other events e.g. onloadend at some stage too?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

possibly so. I didn't need any of the other events to get my tests working, but having a full lifecycle would probably be useful.

@@ -134,6 +134,14 @@ Get the request headers.

Get the request body.

#### .progress(loaded : number, total : number, lengthComputable : bool)
Copy link
Owner

Choose a reason for hiding this comment

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

thanks for the fix here. do you think this should have been implemented on the response interface?

Copy link
Owner

Choose a reason for hiding this comment

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

what do you think about

req.progress(...) //dispatches xhr.upload.onprogress
res.progress(...) //dispatches xhr.onprogress

Copy link
Contributor Author

Choose a reason for hiding this comment

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

That's a good suggestion. I like the symmetry of having the upload related events on the request and the download related events on the response.

@jameslnewell
Copy link
Owner

jameslnewell commented May 31, 2017

I've merged this into v2 (WIP).

@joscha
Copy link

joscha commented Aug 24, 2017

@jameslnewell any chance we could get these changes in a release, so we can use xhr.upload.addEventListener ?

@jameslnewell
Copy link
Owner

@joscha I've fixed the last few red tests and released a preview release of v2 (xhr-mock@next or xhr-mock@2.0.0-preview.1). There's a few TODO/FIXME items left in order to get complete compliance with the spec, but v2 should already be much more compliant than v1. If you could start using/testing v2 for me, I'll release it after a couple weeks of no bugs being reported.

Thanks for your patience.

@joscha
Copy link

joscha commented Aug 30, 2017

Thanks @jameslnewell

@itsjamie
Copy link

itsjamie commented Sep 1, 2017

@jameslnewell can you publish with the lib folder for the preview build? Currently the "lib" folder doesn't exist in the npm package that is published at xhr-mock@next.

@jameslnewell
Copy link
Owner

@itsjamie Sorry! Try xhr-mock@2.0.0-preview.2.

/cc @joscha

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants