New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

bitbucket-url-from-git

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bitbucket-url-from-git

Parse a bitbucket git url and return the bitbucket repo url

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
580
decreased by-23.48%
Maintainers
1
Weekly downloads
 
Created
Source

bitbucket-url-from-git

Blatantly ripped off tj/node-github-url-from-git But tweaked for bitbucket urls

describe('parse(url)', function () {
  it('should support git://*', function () {
    var url = 'git@bitbucket.org:alex-e-leon/node-bitbucket-url-from-git.git'
    parse(url).should.eql('https://bitbucket.org/alex-e-leon/node-bitbucket-url-from-git')
  })

  it('should support git://*.git', function () {
    var url = 'git://bitbucket.org/alex-e-leon/node-bitbucket-url-from-git.git'
    parse(url).should.eql('https://bitbucket.org/alex-e-leon/node-bitbucket-url-from-git')
  })

  it('should support https://*', function () {
    var url = 'https://bitbucket.org/alex-e-leon/node-bitbucket-url-from-git'
    parse(url).should.eql('https://bitbucket.org/alex-e-leon/node-bitbucket-url-from-git')
  })

  it('should support https://*.git', function () {
    var url = 'https://alex@bitbucket.org/alex-e-leon/node-bitbucket-url-from-git.git'
    parse(url).should.eql('https://bitbucket.org/alex-e-leon/node-bitbucket-url-from-git')
  })

  it('should return undefined on failure', function () {
    var url = 'git://bitbucket.org/alex-e-leon/.git'
    assert(parse(url) == null)
  })

  it('should parse git@bitbucket.org:/alex-e-leon/node-bitbucket-url-from-git.git', function () {
    var url = 'git@bitbucket.org:/alex-e-leon/node-bitbucket-url-from-git.git'
    parse(url).should.eql('https://bitbucket.org/alex-e-leon/node-bitbucket-url-from-git')
  })

  it('should parse git@github.com:bcoe/thumbd.git#2.7.0', function () {
    var url = 'git@bitbucket.org:alex-e-leon/node-bitbucket-url-from-git.git#2.7.0'
    parse(url).should.eql('https://bitbucket.org/alex-e-leon/node-bitbucket-url-from-git')
  })

  it('should parse git+https://bitbucket.org/alex-e-leon/node-bitbucket-url-from-git.git', function () {
    var url = 'git+https://bitbucket.org/alex-e-leon/node-bitbucket-url-from-git.git'
    parse(url).should.eql('https://bitbucket.org/alex-e-leon/node-bitbucket-url-from-git')
  })

  it('should parse git+ssh://bitbucket.org/alex-e-leon/node-bitbucket-url-from-git.git', function () {
    var url = 'git+ssh://bitbucket.org/alex-e-leon/node-bitbucket-url-from-git.git'
    parse(url).should.eql('https://bitbucket.org/alex-e-leon/node-bitbucket-url-from-git')
  })

  // snippet urls.

  it('should parse git@ snippet urls', function () {
    var url = 'git@bitbucket.org:snippets/alex-e-leon/nepk84/a-snippet.git'
    parse(url).should.equal('https://bitbucket.org/snippets/alex-e-leon/nepk84')
  })

  it('should parse https://gist urls', function () {
    var url = 'https://alex@bitbucket.org/snippets/alex-e-leon/nepk84/a-snippet.git'
    parse(url).should.equal('https://bitbucket.org/snippets/alex-e-leon/nepk84')
  })

  // Handle arbitrary GitHub Enterprise domains.

  it('should parse parse extra bitbucket enterprise urls provided', function () {
    var url = 'git://bitbucket.example.com/alex-e-leon/node-bitbucket-url-from-git.git'
    parse(
      url, {extraBaseUrls: ['bitbucket.example.com']}
    ).should.equal('https://bitbucket.example.com/alex-e-leon/node-bitbucket-url-from-git')
  })

  it('should parse bitbucket enterprise urls with multiple subdomains', function () {
    var url = 'git://bitbucket.internal.example.com/alex-e-leon/node-bitbucket-url-from-git.git'
    parse(
      url, {extraBaseUrls: ['bitbucket.internal.example.com']}
    ).should.equal('https://bitbucket.internal.example.com/alex-e-leon/node-bitbucket-url-from-git')
  })
})

Keywords

FAQs

Package last updated on 14 Apr 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc