mirror of
				https://github.com/actions/checkout.git
				synced 2025-11-04 05:58:40 +08:00 
			
		
		
		
	The `git sparse-checkout` command is available only since Git version v2.25.0. The `actions/checkout` Action actually supports older Git versions than that; As of time of writing, the minimum version is v2.18.0. Instead of raising this minimum version even for users who do not require a sparse checkout, only check for this minimum version specifically when a sparse checkout was asked for. Suggested-by: Tingluo Huang <tingluohuang@github.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
		
			
				
	
	
		
			91 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import * as exec from '@actions/exec'
 | 
						|
import * as fshelper from '../lib/fs-helper'
 | 
						|
import * as commandManager from '../lib/git-command-manager'
 | 
						|
 | 
						|
let git: commandManager.IGitCommandManager
 | 
						|
let mockExec = jest.fn()
 | 
						|
 | 
						|
describe('git-auth-helper tests', () => {
 | 
						|
  beforeAll(async () => {})
 | 
						|
 | 
						|
  beforeEach(async () => {
 | 
						|
    jest.spyOn(fshelper, 'fileExistsSync').mockImplementation(jest.fn())
 | 
						|
    jest.spyOn(fshelper, 'directoryExistsSync').mockImplementation(jest.fn())
 | 
						|
  })
 | 
						|
 | 
						|
  afterEach(() => {
 | 
						|
    jest.restoreAllMocks()
 | 
						|
  })
 | 
						|
 | 
						|
  afterAll(() => {})
 | 
						|
 | 
						|
  it('branch list matches', async () => {
 | 
						|
    mockExec.mockImplementation((path, args, options) => {
 | 
						|
      console.log(args, options.listeners.stdout)
 | 
						|
 | 
						|
      if (args.includes('version')) {
 | 
						|
        options.listeners.stdout(Buffer.from('2.18'))
 | 
						|
        return 0
 | 
						|
      }
 | 
						|
 | 
						|
      if (args.includes('rev-parse')) {
 | 
						|
        options.listeners.stdline(Buffer.from('refs/heads/foo'))
 | 
						|
        options.listeners.stdline(Buffer.from('refs/heads/bar'))
 | 
						|
        return 0
 | 
						|
      }
 | 
						|
 | 
						|
      return 1
 | 
						|
    })
 | 
						|
    jest.spyOn(exec, 'exec').mockImplementation(mockExec)
 | 
						|
    const workingDirectory = 'test'
 | 
						|
    const lfs = false
 | 
						|
    const doSparseCheckout = false
 | 
						|
    git = await commandManager.createCommandManager(
 | 
						|
      workingDirectory,
 | 
						|
      lfs,
 | 
						|
      doSparseCheckout
 | 
						|
    )
 | 
						|
 | 
						|
    let branches = await git.branchList(false)
 | 
						|
 | 
						|
    expect(branches).toHaveLength(2)
 | 
						|
    expect(branches.sort()).toEqual(['foo', 'bar'].sort())
 | 
						|
  })
 | 
						|
 | 
						|
  it('ambiguous ref name output is captured', async () => {
 | 
						|
    mockExec.mockImplementation((path, args, options) => {
 | 
						|
      console.log(args, options.listeners.stdout)
 | 
						|
 | 
						|
      if (args.includes('version')) {
 | 
						|
        options.listeners.stdout(Buffer.from('2.18'))
 | 
						|
        return 0
 | 
						|
      }
 | 
						|
 | 
						|
      if (args.includes('rev-parse')) {
 | 
						|
        options.listeners.stdline(Buffer.from('refs/heads/foo'))
 | 
						|
        // If refs/tags/v1 and refs/heads/tags/v1 existed on this repository
 | 
						|
        options.listeners.errline(
 | 
						|
          Buffer.from("error: refname 'tags/v1' is ambiguous")
 | 
						|
        )
 | 
						|
        return 0
 | 
						|
      }
 | 
						|
 | 
						|
      return 1
 | 
						|
    })
 | 
						|
    jest.spyOn(exec, 'exec').mockImplementation(mockExec)
 | 
						|
    const workingDirectory = 'test'
 | 
						|
    const lfs = false
 | 
						|
    const doSparseCheckout = false
 | 
						|
    git = await commandManager.createCommandManager(
 | 
						|
      workingDirectory,
 | 
						|
      lfs,
 | 
						|
      doSparseCheckout
 | 
						|
    )
 | 
						|
 | 
						|
    let branches = await git.branchList(false)
 | 
						|
 | 
						|
    expect(branches).toHaveLength(1)
 | 
						|
    expect(branches.sort()).toEqual(['foo'].sort())
 | 
						|
  })
 | 
						|
})
 |