New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

orator-session

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

orator-session - npm Package Compare versions

Comparing version 1.0.14 to 1.0.15

2

package.json
{
"name": "orator-session",
"version": "1.0.14",
"version": "1.0.15",
"description": "Session state and authentication manager for Orator Restful web API server.",

@@ -5,0 +5,0 @@ "main": "source/Orator-Session.js",

@@ -61,3 +61,3 @@ /**

return fCallback(null, null);
return fCallback(null);
}

@@ -64,0 +64,0 @@

@@ -62,3 +62,3 @@ /**

(
'Orator Session with Orator web Server',
'InMemory Orator Session with Orator web Server',
function()

@@ -309,2 +309,22 @@ {

(
'Request a session that doesnt exist',
function(fDone)
{
libSuperTest2
.get('1.0/CheckSession')
.set( 'Cookie', 'UserSession=DoesNotExist' )
.end(
function (pError, pResponse)
{
Expect(pResponse.body.LoggedIn)
.to.equal(false);
Expect(pResponse.statusCode)
.to.equal(200);
fDone();
}
);
}
);
test
(
'Shutdown Orator WebServer',

@@ -311,0 +331,0 @@ function()

@@ -63,3 +63,3 @@ /**

(
'Orator Session with Orator web Server',
'Memcached Orator Session with Orator web Server',
function()

@@ -310,2 +310,22 @@ {

(
'Request a session that doesnt exist',
function(fDone)
{
libSuperTest2
.get('1.0/CheckSession')
.set( 'Cookie', 'UserSession=DoesNotExist' )
.end(
function (pError, pResponse)
{
Expect(pResponse.body.LoggedIn)
.to.equal(false);
Expect(pResponse.statusCode)
.to.equal(200);
fDone();
}
);
}
);
test
(
'Shutdown Orator WebServer',

@@ -312,0 +332,0 @@ function()

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc