summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2012-11-12 11:17:13 +0100
committerAzul <azul@riseup.net>2012-11-12 11:17:13 +0100
commit7b73cbd591aa9ac3f46400c040ae14ec26e2d839 (patch)
treeedc08f1b2c6b05f5d11ead5caf02680ec79ec0cc
parent23350b54ec2723e1b2e333626567c9fe9d1e2644 (diff)
parent71ba8a28ebf04b84a9d2f0eb1a64dedec2ec8fe3 (diff)
Merge branch 'feature-updated_json_api' into develop
-rw-r--r--spec/RestfulSpecRunner.html3
-rw-r--r--spec/restful/login.js6
-rw-r--r--spec/restful/signup.js2
-rw-r--r--src/jqueryRest.js6
4 files changed, 9 insertions, 8 deletions
diff --git a/spec/RestfulSpecRunner.html b/spec/RestfulSpecRunner.html
index a9d708b..f880720 100644
--- a/spec/RestfulSpecRunner.html
+++ b/spec/RestfulSpecRunner.html
@@ -2,6 +2,7 @@
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
+ <meta http-equiv = "Content-Type" content = "text/html; charset=utf-8">
<title>Jasmine Spec Runner</title>
<link rel="shortcut icon" type="image/png" href="lib/jasmine-1.1.0.rc1/jasmine_favicon.png">
@@ -12,7 +13,7 @@
<script type="text/javascript" src="lib/sinon/sinon-1.3.4.js"></script>
<script type="text/javascript" src="lib/jasmine-sinon.js"></script>
- <script type="text/javascript" src="lib/jquery-1.8.2.js"></script>
+ <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>
<!-- the files we are testing... -->
<script type="text/javascript" src="../lib/SHA256.js"></script>
diff --git a/spec/restful/login.js b/spec/restful/login.js
index 9c43c00..4df62a8 100644
--- a/spec/restful/login.js
+++ b/spec/restful/login.js
@@ -52,9 +52,9 @@ describe("Login", function() {
var success = sinon.spy();
this.srp.identify(success);
- this.expectRequest('sessions', 'login=' +login+ '&A=' +A, 'POST');
+ this.expectRequest('sessions.json', 'login=' +login+ '&A=' +A, 'POST');
this.respondJSON({salt: salt, B: B});
- this.expectRequest('sessions/'+login, 'client_auth='+M, 'PUT');
+ this.expectRequest('sessions/'+login+'.json', 'client_auth='+M, 'PUT');
this.respondJSON({M2: M2});
expect(success).toHaveBeenCalled();
@@ -65,7 +65,7 @@ describe("Login", function() {
var error = sinon.spy();
this.srp.identify(success, error);
- this.expectRequest('sessions', 'login=' +login+ '&A=' +A, 'POST');
+ this.expectRequest('sessions.json', 'login=' +login+ '&A=' +A, 'POST');
this.respondJSON({salt: salt, B: 0});
// aborting if B=0
expect(this.requests).toEqual([]);
diff --git a/spec/restful/signup.js b/spec/restful/signup.js
index 7b66dd7..e4d70df 100644
--- a/spec/restful/signup.js
+++ b/spec/restful/signup.js
@@ -22,7 +22,7 @@ describe("Signup", function() {
this.srp.identify = callback;
this.srp.session.getSalt = function() {return "4c78c3f8"};
this.srp.register();
- this.expectRequest('users', "user[login]=testuser&user[password_salt]=4c78c3f8&user[password_verifier]=474c26aa42d11f20544a00f7bf9711c4b5cf7aab95ed448df82b95521b96668e7480b16efce81c861870302560ddf6604c67df54f1d04b99d5bb9d0f02c6051ada5dc9d594f0d4314e12f876cfca3dcd99fc9c98c2e6a5e04298b11061fb8549a22cde0564e91514080df79bca1c38c682214d65d590f66b3719f954b078b83c", 'POST')
+ this.expectRequest('users.json', "user[login]=testuser&user[password_salt]=4c78c3f8&user[password_verifier]=474c26aa42d11f20544a00f7bf9711c4b5cf7aab95ed448df82b95521b96668e7480b16efce81c861870302560ddf6604c67df54f1d04b99d5bb9d0f02c6051ada5dc9d594f0d4314e12f876cfca3dcd99fc9c98c2e6a5e04298b11061fb8549a22cde0564e91514080df79bca1c38c682214d65d590f66b3719f954b078b83c", 'POST')
this.respondJSON({password_salt: "4c78c3f8", login: "testuser", ok: "true"});
expect(callback).toHaveBeenCalled();
});
diff --git a/src/jqueryRest.js b/src/jqueryRest.js
index f50080b..133e3fd 100644
--- a/src/jqueryRest.js
+++ b/src/jqueryRest.js
@@ -54,7 +54,7 @@ jqueryRest = function() {
function sendVerifier(session, callback) {
var salt = session.getSalt();
- $.post("users", { user:
+ $.post("users.json", { user:
{ login: session.getI(),
password_salt: salt,
password_verifier: session.getV(salt).toString(16)}
@@ -62,13 +62,13 @@ jqueryRest = function() {
}
function handshake(session, callback) {
- $.post("sessions", { login: session.getI(),
+ $.post("sessions.json", { login: session.getI(),
A: session.getAstr()}, callback);
}
function authenticate(session, success) {
$.ajax({
- url: "sessions/" + session.getI(),
+ url: "sessions/" + session.getI() + ".json",
type: 'PUT',
data: {client_auth: session.getM()},
success: success