Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: EventSource/eventsource
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.0
Choose a base ref
...
head repository: EventSource/eventsource
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.0.1
Choose a head ref
  • 4 commits
  • 3 files changed
  • 2 contributors

Commits on May 10, 2017

  1. Copy the full SHA
    fefe6fe View commit details
  2. Make the test pass.

    Processing model requires a reconnection due to a 500, 502, 503 or 504 error code.
    https://www.w3.org/TR/2015/REC-eventsource-20150203/#processing-model
    ScalaWilliam committed May 10, 2017
    Copy the full SHA
    1328a06 View commit details
  3. Merge pull request #74 from ScalaWilliam/eventsource-500

    Eventsource 50x support
    rexxars authored May 10, 2017
    Copy the full SHA
    91437de View commit details
  4. 1.0.1

    rexxars committed May 10, 2017
    Copy the full SHA
    9ae13c0 View commit details
Showing with 44 additions and 2 deletions.
  1. +7 −0 lib/eventsource.js
  2. +1 −1 package.json
  3. +36 −1 test/eventsource_test.js
7 changes: 7 additions & 0 deletions lib/eventsource.js
Original file line number Diff line number Diff line change
@@ -110,6 +110,13 @@ function EventSource (url, eventSourceInitDict) {
}

req = (isSecure ? https : http).request(options, function (res) {
// Handle HTTP errors
if (res.statusCode === 500 || res.statusCode === 502 || res.statusCode === 503 || res.statusCode === 504) {
_emit('error', new Event('error', {status: res.statusCode}))
onConnectionClosed()
return
}

// Handle HTTP redirects
if (res.statusCode === 301 || res.statusCode === 307) {
if (!res.headers.location) {
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eventsource",
"version": "1.0.0",
"version": "1.0.1",
"description": "W3C compliant EventSource client for Node.js and browser (polyfill)",
"keywords": [
"eventsource",
37 changes: 36 additions & 1 deletion test/eventsource_test.js
Original file line number Diff line number Diff line change
@@ -601,6 +601,41 @@ describe('Reconnection', function () {
})
})

it('is attempted when the server responds with a 500', function (done) {
createServer(function (err, server) {
if (err) return done(err)

server.on('request', function (req, res) {
res.writeHead(500)
res.end()
})

var es = new EventSource(server.url)
es.reconnectInterval = 0

var errored = false

es.onerror = function () {
if (errored) return
errored = true
server.close(function (err) {
if (err) return done(err)

var port = u.parse(es.url).port
configureServer(http.createServer(), 'http', port, function (err, server2) {
if (err) return done(err)

server2.on('request', writeEvents(['data: hello\n\n']))
es.onmessage = function (m) {
assert.equal('hello', m.data)
server2.close(done)
}
})
})
}
})
})

it('is stopped when server goes down and eventsource is being closed', function (done) {
createServer(function (err, server) {
if (err) return done(err)
@@ -642,7 +677,7 @@ describe('Reconnection', function () {
})
})

it('is not attempted when server responds with non-200', function (done) {
it('is not attempted when server responds with non-200 and non-500', function (done) {
createServer(function (err, server) {
if (err) return done(err)