Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
jio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Yaxel Perez
jio
Commits
15d29f5b
Commit
15d29f5b
authored
Feb 09, 2019
by
Yaxel Perez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed all errors given by linter
parent
d3da040a
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
195 additions
and
69 deletions
+195
-69
Makefile
Makefile
+2
-1
dist/jio-latest.js
dist/jio-latest.js
+55
-0
dist/jio-v3.36.0.js
dist/jio-v3.36.0.js
+55
-0
src/jio.js
src/jio.js
+5
-0
src/jio.storage/nocapacitystorage.js
src/jio.storage/nocapacitystorage.js
+27
-40
test/jio.storage/nocapacitystorage.tests.js
test/jio.storage/nocapacitystorage.tests.js
+51
-28
No files found.
Makefile
View file @
15d29f5b
...
...
@@ -151,7 +151,8 @@ ${JIOVERSION}: ${EXTERNALDIR}/URI.js \
${SRCDIR}/jio.storage/cryptstorage.js
\
${SRCDIR}/jio.storage/websqlstorage.js
\
${SRCDIR}/jio.storage/fbstorage.js
\
${SRCDIR}/jio.storage/cloudooostorage.js
${SRCDIR}/jio.storage/cloudooostorage.js
\
${SRCDIR}/jio.storage/nocapacitystorage.js
@
mkdir
-p
$
(
@D
)
cat
$^
>
$@
...
...
dist/jio-latest.js
View file @
15d29f5b
...
...
@@ -16333,3 +16333,58 @@ return new Parser;
jIO
.
addStorage
(
'
cloudooo
'
,
CloudoooStorage
);
}(
jIO
,
RSVP
,
DOMParser
,
XMLSerializer
));
/*global define, jIO, btoa, b64_hmac_sha1, jQuery, XMLHttpRequest, XHRwrapper,
FormData*/
/*
e Copyright 2019, Nexedi SA
*
* This program is free software: you can Use, Study, Modify and Redistribute
* it under the terms of the GNU General Public License version 3, or (at your
* option) any later version, as published by the Free Software Foundation.
*
* You can also Link and Combine this program with other software covered by
* the terms of any of the Free Software licenses or any of the Open Source
* Initiative approved licenses and Convey the resulting work. Corresponding
* source of such a combination shall include the source code for all other
* software used.
*
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* See COPYING file for full licensing terms.
* See https://www.nexedi.com/licensing for rationale and options.
*/
/*jslint nomen: true*/
(
function
(
jIO
)
{
"
use strict
"
;
console
.
log
(
"
Nocapacity
"
);
function
NoCapacityStorage
(
spec
)
{
this
.
sub_storage
=
jIO
.
createJIO
(
spec
.
sub_storage
);
}
NoCapacityStorage
.
prototype
.
hasCapacity
=
function
()
{
return
false
;
};
NoCapacityStorage
.
prototype
.
get
=
function
()
{
return
this
.
_sub_storage
.
get
.
apply
(
this
.
_sub_storage
,
arguments
);
};
NoCapacityStorage
.
prototype
.
post
=
function
()
{
return
this
.
_sub_storage
.
post
.
apply
(
this
.
_sub_storage
,
arguments
);
};
NoCapacityStorage
.
prototype
.
put
=
function
()
{
return
this
.
_sub_storage
.
put
.
apply
(
this
.
_sub_storage
,
arguments
);
};
NoCapacityStorage
.
prototype
.
remove
=
function
()
{
return
this
.
_sub_storage
.
remove
.
apply
(
this
.
_sub_storage
,
arguments
);
};
jIO
.
addStorage
(
"
nocapacity
"
,
NoCapacityStorage
);
}(
jIO
));
dist/jio-v3.36.0.js
View file @
15d29f5b
...
...
@@ -16333,3 +16333,58 @@ return new Parser;
jIO
.
addStorage
(
'
cloudooo
'
,
CloudoooStorage
);
}(
jIO
,
RSVP
,
DOMParser
,
XMLSerializer
));
/*global define, jIO, btoa, b64_hmac_sha1, jQuery, XMLHttpRequest, XHRwrapper,
FormData*/
/*
e Copyright 2019, Nexedi SA
*
* This program is free software: you can Use, Study, Modify and Redistribute
* it under the terms of the GNU General Public License version 3, or (at your
* option) any later version, as published by the Free Software Foundation.
*
* You can also Link and Combine this program with other software covered by
* the terms of any of the Free Software licenses or any of the Open Source
* Initiative approved licenses and Convey the resulting work. Corresponding
* source of such a combination shall include the source code for all other
* software used.
*
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* See COPYING file for full licensing terms.
* See https://www.nexedi.com/licensing for rationale and options.
*/
/*jslint nomen: true*/
(
function
(
jIO
)
{
"
use strict
"
;
console
.
log
(
"
Nocapacity
"
);
function
NoCapacityStorage
(
spec
)
{
this
.
sub_storage
=
jIO
.
createJIO
(
spec
.
sub_storage
);
}
NoCapacityStorage
.
prototype
.
hasCapacity
=
function
()
{
return
false
;
};
NoCapacityStorage
.
prototype
.
get
=
function
()
{
return
this
.
_sub_storage
.
get
.
apply
(
this
.
_sub_storage
,
arguments
);
};
NoCapacityStorage
.
prototype
.
post
=
function
()
{
return
this
.
_sub_storage
.
post
.
apply
(
this
.
_sub_storage
,
arguments
);
};
NoCapacityStorage
.
prototype
.
put
=
function
()
{
return
this
.
_sub_storage
.
put
.
apply
(
this
.
_sub_storage
,
arguments
);
};
NoCapacityStorage
.
prototype
.
remove
=
function
()
{
return
this
.
_sub_storage
.
remove
.
apply
(
this
.
_sub_storage
,
arguments
);
};
jIO
.
addStorage
(
"
nocapacity
"
,
NoCapacityStorage
);
}(
jIO
));
src/jio.js
View file @
15d29f5b
...
...
@@ -471,6 +471,11 @@
options
=
{};
}
return
ensurePushableQueue
(
function
()
{
// this will fail with an unhelpful errror message if context does not
// have the "query" capacity.
// possible fixes:
// - Catch errors thrown by hasCapacity everywhere all the time
// - Refactor hasCapacity to return false instead of raising an error
if
(
context
.
hasCapacity
(
"
list
"
)
&&
((
options
.
query
===
undefined
)
||
context
.
hasCapacity
(
"
query
"
))
&&
((
options
.
sort_on
===
undefined
)
||
context
.
hasCapacity
(
"
sort
"
))
&&
...
...
src/jio.storage/nocapacitystorage.js
View file @
15d29f5b
/*global define, jIO, btoa, b64_hmac_sha1, jQuery, XMLHttpRequest, XHRwrapper,
FormData*/
/*
e Copyright 2019, Nexedi SA
*
...
...
@@ -18,51 +21,35 @@
* See https://www.nexedi.com/licensing for rationale and options.
*/
(
function
(
dependencies
,
module
)
{
"
use strict
"
;
if
(
typeof
define
===
'
function
'
&&
define
.
amd
)
{
return
define
(
dependencies
,
module
);
}
if
(
typeof
exports
===
'
object
'
)
{
return
module
(
exports
,
require
(
'
jio
'
),
require
(
'
rsvp
'
)
);
}
window
.
no_capacity_storage
=
{};
module
(
window
.
no_capacity_storage
,
jIO
,
RSVP
);
}([
'
exports
'
,
'
jio
'
,
'
rsvp
'
,
],
function
(
exports
,
jIO
,
RSVP
)
{
"
use strict
"
;
/*jslint nomen: true*/
(
function
(
jIO
)
{
"
use strict
"
;
console
.
log
(
"
Nocapacity
"
);
function
NoCapacityStorage
(
spec
)
{
this
.
_
sub_storage
=
jIO
.
createJIO
(
spec
.
sub_storage
);
}
function
NoCapacityStorage
(
spec
)
{
this
.
sub_storage
=
jIO
.
createJIO
(
spec
.
sub_storage
);
}
NoCapacityStorage
.
prototype
.
hasCapacity
=
function
(
name
)
{
return
false
;
}
NoCapacityStorage
.
prototype
.
hasCapacity
=
function
(
)
{
return
false
;
};
NoCapacityStorage
.
prototype
.
get
=
function
()
{
return
this
.
_sub_storage
.
get
.
apply
(
this
.
_sub_storage
,
arguments
);
};
NoCapacityStorage
.
prototype
.
get
=
function
()
{
return
this
.
_sub_storage
.
get
.
apply
(
this
.
_sub_storage
,
arguments
);
};
NoCapacityStorage
.
prototype
.
post
=
function
()
{
return
this
.
_sub_storage
.
post
.
apply
(
this
.
_sub_storage
,
arguments
);
};
NoCapacityStorage
.
prototype
.
post
=
function
()
{
return
this
.
_sub_storage
.
post
.
apply
(
this
.
_sub_storage
,
arguments
);
};
NoCapacityStorage
.
prototype
.
put
=
function
()
{
return
this
.
_sub_storage
.
put
.
apply
(
this
.
_sub_storage
,
arguments
);
};
NoCapacityStorage
.
prototype
.
put
=
function
()
{
return
this
.
_sub_storage
.
put
.
apply
(
this
.
_sub_storage
,
arguments
);
};
NoCapacityStorage
.
prototype
.
remove
=
function
()
{
return
this
.
_sub_storage
.
remove
.
apply
(
this
.
_sub_storage
,
arguments
);
};
NoCapacityStorage
.
prototype
.
remove
=
function
()
{
return
this
.
_sub_storage
.
remove
.
apply
(
this
.
_sub_storage
,
arguments
);
};
jio
.
addStorage
(
"
nocapacity
"
,
NoCapacityStorage
);
jIO
.
addStorage
(
"
nocapacity
"
,
NoCapacityStorage
);
});
}
(
jIO
)
);
test/jio.storage/nocapacitystorage.tests.js
View file @
15d29f5b
(
function
(
jIO
,
QUnit
,
Blob
)
{
"
use strict
"
;
function
TestStorage
()
{
return
this
;
}
jIO
.
addStorage
(
'
teststorage
'
,
TestStorage
);
module
(
"
NoCapacityStorage
"
);
QUnit
.
test
(
'
test constructor
'
,
function
()
{
var
jio
=
jIO
.
createJIO
({
type
:
"
nocapacity
"
,
schema
:
{
'
date
'
:
{
'
type
'
:
'
string
'
,
format
:
'
date-time
'
}},
sub_storage
:
{
type
:
'
teststorage
'
}
});
(
function
(
jIO
,
QUnit
)
{
"
use strict
"
;
function
TestStorage
()
{
return
this
;
}
TestStorage
.
prototype
.
get
=
function
()
{
return
true
;
};
TestStorage
.
prototype
.
post
=
function
()
{
return
true
;
};
TestStorage
.
prototype
.
put
=
function
()
{
return
true
;
};
TestStorage
.
prototype
.
remove
=
function
()
{
return
true
;
};
jIO
.
addStorage
(
'
teststorage
'
,
TestStorage
);
module
(
"
NoCapacityStorage
"
);
QUnit
.
test
(
'
Constructor does not crash
'
,
function
()
{
jIO
.
createJIO
({
type
:
"
nocapacity
"
,
schema
:
{
'
date
'
:
{
'
type
'
:
'
string
'
,
format
:
'
date-time
'
}},
sub_storage
:
{
type
:
'
teststorage
'
}
});
QUnit
.
expect
(
0
);
});
QUnit
.
test
(
'
Storage does not have query capacity
'
,
function
(
assert
)
{
var
jio
=
jIO
.
createJIO
({
type
:
"
nocapacity
"
,
schema
:
{
'
date
'
:
{
'
type
'
:
'
string
'
,
format
:
'
date-time
'
}},
sub_storage
:
{
type
:
'
teststorage
'
}
});
assert
.
throws
(
function
()
{
jio
.
hasCapacity
(
'
query
'
);
}
);
});
QUnit
.
test
(
'
test hasCapacity
'
,
function
()
{
var
jio
=
jIO
.
createJIO
({
type
:
"
nocapacity
"
,
schema
:
{
'
date
'
:
{
'
type
'
:
'
string
'
,
format
:
'
date-time
'
}},
sub_storage
:
{
type
:
'
teststorage
'
}
});
QUnit
.
equal
(
jio
.
hasCapacity
(
'
query
'
),
false
);
QUnit
.
test
(
'
Storage calls sub-storage methods
'
,
function
(
assert
)
{
var
jio
=
jIO
.
createJIO
({
type
:
"
nocapacity
"
,
schema
:
{
'
date
'
:
{
'
type
'
:
'
string
'
,
format
:
'
date-time
'
}},
sub_storage
:
{
type
:
'
teststorage
'
}
});
assert
.
ok
(
jio
.
get
(
"
fake id
"
));
assert
.
ok
(
jio
.
post
());
assert
.
ok
(
jio
.
put
(
"
fake id
"
));
assert
.
ok
(
jio
.
remove
(
"
fake id
"
));
});
}
)(
jIO
,
QUnit
,
Blob
);
}
(
jIO
,
QUnit
)
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment