11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ciconst common = require('../common'); 41cb0ef41Sopenharmony_ci 51cb0ef41Sopenharmony_ciif (!common.hasCrypto) 61cb0ef41Sopenharmony_ci common.skip('missing crypto'); 71cb0ef41Sopenharmony_ci 81cb0ef41Sopenharmony_ciconst assert = require('assert'); 91cb0ef41Sopenharmony_ciconst tls = require('tls'); 101cb0ef41Sopenharmony_ci 111cb0ef41Sopenharmony_ciconst fixtures = require('../common/fixtures'); 121cb0ef41Sopenharmony_ci 131cb0ef41Sopenharmony_ciconst server = tls.createServer({ 141cb0ef41Sopenharmony_ci key: fixtures.readKey('agent1-key.pem'), 151cb0ef41Sopenharmony_ci cert: fixtures.readKey('agent1-cert.pem'), 161cb0ef41Sopenharmony_ci rejectUnauthorized: true 171cb0ef41Sopenharmony_ci}, function(c) { 181cb0ef41Sopenharmony_ci}).listen(0, common.mustCall(function() { 191cb0ef41Sopenharmony_ci assert.throws(() => { 201cb0ef41Sopenharmony_ci tls.connect({ 211cb0ef41Sopenharmony_ci port: this.address().port, 221cb0ef41Sopenharmony_ci ciphers: 'no-such-cipher' 231cb0ef41Sopenharmony_ci }, common.mustNotCall()); 241cb0ef41Sopenharmony_ci }, /no cipher match/i); 251cb0ef41Sopenharmony_ci 261cb0ef41Sopenharmony_ci server.close(); 271cb0ef41Sopenharmony_ci})); 28