Skip to content

Commit 4672f09

Browse files
authored
test, fix tests for KeyObject.
The test case for KeyObject does not really test the creation of asymmetric cryptographic keys using jwk because of a misspelling of the variable.
1 parent 0951e7b commit 4672f09

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

test/parallel/test-crypto-key-objects.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -169,16 +169,16 @@ const privateDsa = fixtures.readKey('dsa_private_encrypted_1025.pem',
169169
assert.strictEqual(derivedPublicKey.symmetricKeySize, undefined);
170170

171171
const publicKeyFromJwk = createPublicKey({ key: publicJwk, format: 'jwk' });
172-
assert.strictEqual(publicKey.type, 'public');
173-
assert.strictEqual(publicKey.toString(), '[object KeyObject]');
174-
assert.strictEqual(publicKey.asymmetricKeyType, 'rsa');
175-
assert.strictEqual(publicKey.symmetricKeySize, undefined);
172+
assert.strictEqual(publicKeyFromJwk.type, 'public');
173+
assert.strictEqual(publicKeyFromJwk.toString(), '[object KeyObject]');
174+
assert.strictEqual(publicKeyFromJwk.asymmetricKeyType, 'rsa');
175+
assert.strictEqual(publicKeyFromJwk.symmetricKeySize, undefined);
176176

177177
const privateKeyFromJwk = createPrivateKey({ key: jwk, format: 'jwk' });
178-
assert.strictEqual(privateKey.type, 'private');
179-
assert.strictEqual(privateKey.toString(), '[object KeyObject]');
180-
assert.strictEqual(privateKey.asymmetricKeyType, 'rsa');
181-
assert.strictEqual(privateKey.symmetricKeySize, undefined);
178+
assert.strictEqual(privateKeyFromJwk.type, 'private');
179+
assert.strictEqual(privateKeyFromJwk.toString(), '[object KeyObject]');
180+
assert.strictEqual(privateKeyFromJwk.asymmetricKeyType, 'rsa');
181+
assert.strictEqual(privateKeyFromJwk.symmetricKeySize, undefined);
182182

183183
// It should also be possible to import an encrypted private key as a public
184184
// key.

0 commit comments

Comments
 (0)