How to use extractSubjectFromPfx method in Cypress

Best JavaScript code snippet using cypress

client-certificates.js

Source:client-certificates.js Github

copy

Full Screen

...243                        debug(`loading PFX cert from '${cert.pfx}'`);244                        const pfxRaw = loadBinaryFromFile(cert.pfx);245                        const pfxParsed = loadPfx(pfxRaw, passphrase);246                        urlClientCertificates.clientCertificates.pfx.push(new PfxCertificate(pfxRaw, passphrase));247                        const subject = extractSubjectFromPfx(pfxParsed);248                        urlClientCertificates.addSubject(subject);249                        debug(`loaded client PFX certificate: ${subject} for url: ${urlClientCertificates.url}`);250                    }251                });252                agent_1.clientCertificateStore.addClientCertificatesForUrl(urlClientCertificates);253                index++;254            });255            debug(`loaded client certificates for ${agent_1.clientCertificateStore.getCertCount()} URL(s)`);256        }257    }258    catch (e) {259        debug(`Failed to load client certificate for clientCertificates[${index}]: ${e.message} ${e.stack}`);260        throw new Error(`Failed to load client certificates for clientCertificates[${index}]: ${e.message}.  For more debug details run Cypress with DEBUG=cypress:server:client-certificates*`);261    }262}263exports.loadClientCertificateConfig = loadClientCertificateConfig;264function loadBinaryFromFile(filepath) {265    debug(`loadCertificateFile: ${filepath}`);266    return fs_extra_1.default.readFileSync(filepath);267}268function loadTextFromFile(filepath) {269    debug(`loadPassphraseFile: ${filepath}`);270    return fs_extra_1.default.readFileSync(filepath, 'utf8').toString();271}272/**273 * Extract subject from supplied pem instance274 */275function extractSubjectFromPem(pem) {276    try {277        return pem.subject.attributes278            .map((attr) => [attr.shortName, attr.value].join('='))279            .join(', ');280    }281    catch (e) {282        throw new Error(`Unable to extract subject from PEM file: ${e.message}`);283    }284}285/**286 * Load PFX data from the supplied Buffer and passphrase287 */288function loadPfx(pfx, passphrase) {289    try {290        const certDer = util.decode64(pfx.toString('base64'));291        const certAsn1 = asn1.fromDer(certDer);292        return pkcs12.pkcs12FromAsn1(certAsn1, passphrase);293    }294    catch (e) {295        debug(`loadPfx fail: ${e.message} ${e.stackTrace}`);296        throw new Error(`Unable to load PFX file: ${e.message}`);297    }298}299/**300 * Extract subject from supplied pfx instance301 */302function extractSubjectFromPfx(pfx) {303    try {304        const certs = pfx.getBags({ bagType: pki.oids.certBag })[pki.oids.certBag].map((item) => item.cert);305        return certs[0].subject.attributes.map((attr) => [attr.shortName, attr.value].join('=')).join(', ');306    }307    catch (e) {308        throw new Error(`Unable to extract subject from PFX file: ${e.message}`);309    }...

Full Screen

Full Screen

Using AI Code Generation

copy

Full Screen

1Cypress.Commands.add('extractSubjectFromPfx', (pfx, password) => {2    return cy.task('extractSubjectFromPfx', { pfx, password });3});4const cypressTypeScriptPreprocessor = require('./cy-ts-preprocessor');5module.exports = (on, config) => {6    on('file:preprocessor', cypressTypeScriptPreprocessor);7    on('task', {8        extractSubjectFromPfx: require('cypress-certificates').extractSubjectFromPfx,9    });10};11const wp = require('@cypress/webpack-preprocessor');12module.exports = (on, config) => {13    const options = {14        webpackOptions: require('../../webpack.config'),15    };16    on('file:preprocessor', wp(options));17};18const path = require('path');19module.exports = {20    resolve: {21    },22    module: {23            {24                options: {25                    configFile: path.join(__dirname, 'tsconfig.json'),26                },27            },28    },29};30{31    "compilerOptions": {32        "paths": {33        }34    },35}36{37    "env": {38    }39}40{41    "devDependencies": {

Full Screen

Using AI Code Generation

copy

Full Screen

1describe('test', () => {2  it('test', () => {3    cy.readFile('cypress/fixtures/test.pfx', 'base64').then((data) => {4      const pfx = Buffer.from(data, 'base64');5      const subject = Cypress.Blob.extractSubjectFromPfx(pfx, 'password');6      cy.log(subject);7    });8  });9});10const { Blob } = Cypress.cy;11Blob.extractSubjectFromPfx = (pfx, password) => {12  const p12Der = forge.util.decode64(pfx.toString('binary'));13  const p12Asn1 = forge.asn1.fromDer(p12Der);14  const p12 = forge.pkcs12.pkcs12FromAsn1(p12Asn1, password);15  const certBag = p12.getBags({ bagType: forge.pki.oids.certBag })[forge.pki.oids.certBag][0];16  const cert = certBag.cert;17  const subject = cert.subject.attributes.map((attr) => {18    return `${attr.shortName}=${attr.value}`;19  }).join(', ');20  return subject;21};22const { Blob } = require('cypress/types/lodash');23Blob.extractSubjectFromPfx = (pfx, password) => {24  const p12Der = forge.util.decode64(pfx.toString('binary'));25  const p12Asn1 = forge.asn1.fromDer(p12Der);26  const p12 = forge.pkcs12.pkcs12FromAsn1(p12Asn1, password);27  const certBag = p12.getBags({ bagType: forge.pki.oids.certBag })[forge.pki.oids.certBag][0];28  const cert = certBag.cert;29  const subject = cert.subject.attributes.map((attr) => {30    return `${attr.shortName}=${attr.value}`;31  }).join(', ');32  return subject;33};34const { Blob } = Cypress.cy;35Blob.extractSubjectFromPfx = (pfx, password) => {36  const p12Der = forge.util.decode64(pfx.toString('binary'));

Full Screen

Using AI Code Generation

copy

Full Screen

1var extractSubjectFromPfx = require('cypress-ssl-pinning/dist/extractSubjectFromPfx').default;2var subject = extractSubjectFromPfx('path/to/pfx/file.pfx', 'pfxPassword');3console.log('subject', subject);4const extractSubjectFromPfx = require('cypress-ssl-pinning/dist/extractSubjectFromPfx').default;5const subject = extractSubjectFromPfx('path/to/pfx/file.pfx', 'pfxPassword');6console.log('subject', subject);7const extractSubjectFromPfx = require('cypress-ssl-pinning/dist/extractSubjectFromPfx').default;8const subject = extractSubjectFromPfx('path/to/pfx/file.pfx', 'pfxPassword');9console.log('subject', subject);10declare namespace Cypress {11  interface Chainable {12    extractSubjectFromPfx(pfxFilePath: string, pfxPassword: string): string;13  }14}

Full Screen

Using AI Code Generation

copy

Full Screen

1const cypress = require('cypress');2const cypress = new Cypress();3cypress.extractSubjectFromPfx('pfxFile', 'pfxPassword', 'subjectName');4const cypress = require('cypress');5const cypress = new Cypress();6cypress.extractSubjectFromPem('pemFile', 'subjectName');7const cypress = require('cypress');8const cypress = new Cypress();9cypress.extractSubjectFromPem('pemFile', 'subjectName');10const cypress = require('cypress');11const cypress = new Cypress();12cypress.extractSubjectFromPem('pemFile', 'subjectName');13const cypress = require('cypress');14const cypress = new Cypress();15cypress.extractSubjectFromPem('pemFile', 'subjectName');16const cypress = require('cypress');17const cypress = new Cypress();18cypress.extractSubjectFromPem('pemFile', 'subjectName');19const cypress = require('cypress');20const cypress = new Cypress();21cypress.extractSubjectFromPem('pemFile', 'subjectName');22const cypress = require('cypress');23const cypress = new Cypress();24cypress.extractSubjectFromPem('pemFile', 'subjectName');25const cypress = require('cypress');26const cypress = new Cypress();27cypress.extractSubjectFromPem('pemFile', 'subjectName');28const cypress = require('cypress');29const cypress = new Cypress();30cypress.extractSubjectFromPem('p

Full Screen

Using AI Code Generation

copy

Full Screen

1describe('Cypress PFX Test', function () {2    it('Extract Subject from PFX', function () {3        cy.readFile('C:/Users/xxxx/Downloads/xxxx.pfx').then((pfx) => {4            cy.log(cy.extractSubjectFromPfx(pfx, 'xxxxxx'));5        })6    })7})8Cypress.Commands.add('extractSubjectFromPfx', (pfx, password) => {9    const pki = forge.pki;10    const p12Asn1 = forge.asn1.fromDer(pfx);11    const p12 = pki.pkcs12.pkcs12FromAsn1(p12Asn1, false, password);12    const certBags = p12.getBags({ bagType: pki.oids.certBag });13    const certBag = certBags[pki.oids.certBag][0];14    const cert = certBag.cert;15    return cert.subject.attributes[0].value;16})

Full Screen

Cypress Tutorial

Cypress is a renowned Javascript-based open-source, easy-to-use end-to-end testing framework primarily used for testing web applications. Cypress is a relatively new player in the automation testing space and has been gaining much traction lately, as evidenced by the number of Forks (2.7K) and Stars (42.1K) for the project. LambdaTest’s Cypress Tutorial covers step-by-step guides that will help you learn from the basics till you run automation tests on LambdaTest.

Chapters:

  1. What is Cypress? -
  2. Why Cypress? - Learn why Cypress might be a good choice for testing your web applications.
  3. Features of Cypress Testing - Learn about features that make Cypress a powerful and flexible tool for testing web applications.
  4. Cypress Drawbacks - Although Cypress has many strengths, it has a few limitations that you should be aware of.
  5. Cypress Architecture - Learn more about Cypress architecture and how it is designed to be run directly in the browser, i.e., it does not have any additional servers.
  6. Browsers Supported by Cypress - Cypress is built on top of the Electron browser, supporting all modern web browsers. Learn browsers that support Cypress.
  7. Selenium vs Cypress: A Detailed Comparison - Compare and explore some key differences in terms of their design and features.
  8. Cypress Learning: Best Practices - Take a deep dive into some of the best practices you should use to avoid anti-patterns in your automation tests.
  9. How To Run Cypress Tests on LambdaTest? - Set up a LambdaTest account, and now you are all set to learn how to run Cypress tests.

Certification

You can elevate your expertise with end-to-end testing using the Cypress automation framework and stay one step ahead in your career by earning a Cypress certification. Check out our Cypress 101 Certification.

YouTube

Watch this 3 hours of complete tutorial to learn the basics of Cypress and various Cypress commands with the Cypress testing at LambdaTest.

Run Cypress automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful