aboutsummaryrefslogtreecommitdiffstats
path: root/lang/js/BrowserTestExtension/tests/verifyTest.js (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-10-18doc: use https:// for www.gnu.orgDaniel Kahn Gillmor1-1/+1
-- Signed-off-by: Daniel Kahn Gillmor <[email protected]>
2018-09-19js: add configuration option on startupMaximilian Krambach1-1/+1
-- * src/index.js: Added an optional configuration object for the startup. * configuration: timeout - the initial check for a connection ran into timeouts on slower testing machines. 500ms for initial startup is not sufficient everywhere. The default timeout was raised to 1000ms, and as an option this timeout can be increased even further. * BrowsertestExtension: Set the initial connection timeouts to 2 seconds, to be able to test on slower machines.
2018-08-22js: make method parameters objectsMaximilian Krambach1-20/+20
-- * As requested by using parties, the options to be passed into the methods are now objects, with the objects' properties better describing what they do, and to avoid the need to type several nulls in a method call if one wants the last parameter. - src/Keyring.js, src/gpgme.js: Changed parameters and their validations - BrowserTest/*.js Had to adapt quite some calls to the new format
2018-08-22js: changed verify signature result infosjavascript-bindingMaximilian Krambach1-19/+24
-- * the resulting information of verify now are as documented, and the same as in a decrypt callback
2018-08-20js: add and apply eslint rulesMaximilian Krambach1-7/+7
-- * mainly spacing, see .eslintrc.json for details
2018-07-27js: clean up test extensionMaximilian Krambach1-50/+49
-- Tests will now run with one instance of gpgmejs each block, which reduces overhead. Readability is (hopefully) improved), some negative tests are added. There is still a performance problem in base64 encoding/decoding, which causes some tests to fail due to time out.
2018-07-20js: repair BrowserTextExtension testMaximilian Krambach1-8/+8
-- * the signed message to verify was signed by a wrong test key
2018-07-09js: fix verify result reportingMaximilian Krambach1-0/+86
-- * src/Signature.js: searching for overall validity in the "summary" property * BrowsertestExtension: Added two verify tests