#!/bin/sh global test_description := ''rev-list/rev-parse --glob'' source ./test-lib.sh proc commit { test_tick && echo $1 > foo && git add foo && git commit -m $1 } proc compare { # Split arguments on whitespace. git $1 $2 >expected && git $1 $3 >actual && test_cmp expected actual } test_expect_success 'setup' ' commit master && git checkout -b subspace/one master && commit one && git checkout -b subspace/two master && commit two && git checkout -b subspace-x master && commit subspace-x && git checkout -b other/three master && commit three && git checkout -b someref master && commit some && git checkout master && commit master2 && git tag foo/bar master && commit master3 && git update-ref refs/remotes/foo/baz master && commit master4 ' test_expect_success 'rev-parse --glob=refs/heads/subspace/*' ' compare rev-parse "subspace/one subspace/two" "--glob=refs/heads/subspace/*" ' test_expect_success 'rev-parse --glob=heads/subspace/*' ' compare rev-parse "subspace/one subspace/two" "--glob=heads/subspace/*" ' test_expect_success 'rev-parse --glob=refs/heads/subspace/' ' compare rev-parse "subspace/one subspace/two" "--glob=refs/heads/subspace/" ' test_expect_success 'rev-parse --glob=heads/subspace/' ' compare rev-parse "subspace/one subspace/two" "--glob=heads/subspace/" ' test_expect_success 'rev-parse --glob=heads/subspace' ' compare rev-parse "subspace/one subspace/two" "--glob=heads/subspace" ' test_expect_failure 'rev-parse accepts --glob as detached option' ' compare rev-parse "subspace/one subspace/two" "--glob heads/subspace" ' test_expect_failure 'rev-parse is not confused by option-like glob' ' compare rev-parse "master" "--glob --symbolic master" ' test_expect_success 'rev-parse --branches=subspace/*' ' compare rev-parse "subspace/one subspace/two" "--branches=subspace/*" ' test_expect_success 'rev-parse --branches=subspace/' ' compare rev-parse "subspace/one subspace/two" "--branches=subspace/" ' test_expect_success 'rev-parse --branches=subspace' ' compare rev-parse "subspace/one subspace/two" "--branches=subspace" ' test_expect_success 'rev-parse --glob=heads/subspace/* --glob=heads/other/*' ' compare rev-parse "subspace/one subspace/two other/three" "--glob=heads/subspace/* --glob=heads/other/*" ' test_expect_success 'rev-parse --glob=heads/someref/* master' ' compare rev-parse "master" "--glob=heads/someref/* master" ' test_expect_success 'rev-parse --glob=heads/*' ' compare rev-parse "master other/three someref subspace-x subspace/one subspace/two" "--glob=heads/*" ' test_expect_success 'rev-parse --tags=foo' ' compare rev-parse "foo/bar" "--tags=foo" ' test_expect_success 'rev-parse --remotes=foo' ' compare rev-parse "foo/baz" "--remotes=foo" ' test_expect_success 'rev-parse --exclude with --branches' ' compare rev-parse "--exclude=*/* --branches" "master someref subspace-x" ' test_expect_success 'rev-parse --exclude with --all' ' compare rev-parse "--exclude=refs/remotes/* --all" "--branches --tags" ' test_expect_success 'rev-parse accumulates multiple --exclude' ' compare rev-parse "--exclude=refs/remotes/* --exclude=refs/tags/* --all" --branches ' test_expect_success 'rev-list --glob=refs/heads/subspace/*' ' compare rev-list "subspace/one subspace/two" "--glob=refs/heads/subspace/*" ' test_expect_success 'rev-list --glob refs/heads/subspace/*' ' compare rev-list "subspace/one subspace/two" "--glob refs/heads/subspace/*" ' test_expect_success 'rev-list not confused by option-like --glob arg' ' compare rev-list "master" "--glob -0 master" ' test_expect_success 'rev-list --glob=heads/subspace/*' ' compare rev-list "subspace/one subspace/two" "--glob=heads/subspace/*" ' test_expect_success 'rev-list --glob=refs/heads/subspace/' ' compare rev-list "subspace/one subspace/two" "--glob=refs/heads/subspace/" ' test_expect_success 'rev-list --glob=heads/subspace/' ' compare rev-list "subspace/one subspace/two" "--glob=heads/subspace/" ' test_expect_success 'rev-list --glob=heads/subspace' ' compare rev-list "subspace/one subspace/two" "--glob=heads/subspace" ' test_expect_success 'rev-list --branches=subspace/*' ' compare rev-list "subspace/one subspace/two" "--branches=subspace/*" ' test_expect_success 'rev-list --branches=subspace/' ' compare rev-list "subspace/one subspace/two" "--branches=subspace/" ' test_expect_success 'rev-list --branches=subspace' ' compare rev-list "subspace/one subspace/two" "--branches=subspace" ' test_expect_success 'rev-list --branches' ' compare rev-list "master subspace-x someref other/three subspace/one subspace/two" "--branches" ' test_expect_success 'rev-list --glob=heads/someref/* master' ' compare rev-list "master" "--glob=heads/someref/* master" ' test_expect_success 'rev-list --glob=heads/subspace/* --glob=heads/other/*' ' compare rev-list "subspace/one subspace/two other/three" "--glob=heads/subspace/* --glob=heads/other/*" ' test_expect_success 'rev-list --glob=heads/*' ' compare rev-list "master other/three someref subspace-x subspace/one subspace/two" "--glob=heads/*" ' test_expect_success 'rev-list --tags=foo' ' compare rev-list "foo/bar" "--tags=foo" ' test_expect_success 'rev-list --tags' ' compare rev-list "foo/bar" "--tags" ' test_expect_success 'rev-list --remotes=foo' ' compare rev-list "foo/baz" "--remotes=foo" ' test_expect_success 'rev-list --exclude with --branches' ' compare rev-list "--exclude=*/* --branches" "master someref subspace-x" ' test_expect_success 'rev-list --exclude with --all' ' compare rev-list "--exclude=refs/remotes/* --all" "--branches --tags" ' test_expect_success 'rev-list accumulates multiple --exclude' ' compare rev-list "--exclude=refs/remotes/* --exclude=refs/tags/* --all" --branches ' # "git rev-list" is likely to be a bug in the calling script and may # deserve an error message, but do cases where set of refs programmatically # given using globbing and/or --stdin need to fail with the same error, or # are we better off reporting a success with no output? The following few # tests document the current behaviour to remind us that we might want to # think about this issue. test_expect_failure 'rev-list may want to succeed with empty output on no input (1)' ' >expect && git rev-list --stdin actual && test_cmp expect actual ' test_expect_failure 'rev-list may want to succeed with empty output on no input (2)' ' >expect && git rev-list --exclude=* --all >actual && test_cmp expect actual ' test_expect_failure 'rev-list may want to succeed with empty output on no input (3)' ' ( test_create_repo empty && cd empty && >expect && git rev-list --all >actual && test_cmp expect actual ) ' test_expect_success 'shortlog accepts --glob/--tags/--remotes' ' compare shortlog "subspace/one subspace/two" --branches=subspace && compare shortlog \ "master subspace-x someref other/three subspace/one subspace/two" \ --branches && compare shortlog master "--glob=heads/someref/* master" && compare shortlog "subspace/one subspace/two other/three" \ "--glob=heads/subspace/* --glob=heads/other/*" && compare shortlog \ "master other/three someref subspace-x subspace/one subspace/two" \ "--glob=heads/*" && compare shortlog foo/bar --tags=foo && compare shortlog foo/bar --tags && compare shortlog foo/baz --remotes=foo ' test_expect_failure 'shortlog accepts --glob as detached option' ' compare shortlog \ "master other/three someref subspace-x subspace/one subspace/two" \ "--glob heads/*" ' test_expect_failure 'shortlog --glob is not confused by option-like argument' ' compare shortlog master "--glob -e master" ' test_done (CommandList children: [ (Assignment keyword: Assign_None pairs: [ (assign_pair lhs: (LhsName name:test_description) op: Equal rhs: {(SQ <"rev-list/rev-parse --glob">)} spids: [4] ) ] spids: [4] ) (C {(.)} {(./test-lib.sh)}) (FuncDef name: commit body: (BraceGroup children: [ (AndOr children: [ (C {(test_tick)}) (AndOr children: [ (SimpleCommand words: [{(echo)} {($ VSub_Number "$1")}] redirects: [(Redir op_id:Redir_Great fd:-1 arg_word:{(foo)} spids:[32])] ) (AndOr children: [ (C {(git)} {(add)} {(foo)}) (C {(git)} {(commit)} {(-m)} {(DQ ($ VSub_Number "$1"))}) ] op_id: Op_DAmp ) ] op_id: Op_DAmp ) ] op_id: Op_DAmp ) ] spids: [20] ) spids: [15 19] ) (FuncDef name: compare body: (BraceGroup children: [ (AndOr children: [ (SimpleCommand words: [{(git)} {($ VSub_Number "$1")} {($ VSub_Number "$2")}] redirects: [(Redir op_id:Redir_Great fd:-1 arg_word:{(expected)} spids:[79])] ) (AndOr children: [ (SimpleCommand words: [{(git)} {($ VSub_Number "$1")} {($ VSub_Number "$3")}] redirects: [(Redir op_id:Redir_Great fd:-1 arg_word:{(actual)} spids:[91])] ) (C {(test_cmp)} {(expected)} {(actual)}) ] op_id: Op_DAmp ) ] op_id: Op_DAmp ) ] spids: [66] ) spids: [61 65] ) (C {(test_expect_success)} {(SQ )} { (SQ <"\n"> <"\n"> <"\tcommit master &&\n"> <"\tgit checkout -b subspace/one master &&\n"> <"\tcommit one &&\n"> <"\tgit checkout -b subspace/two master &&\n"> <"\tcommit two &&\n"> <"\tgit checkout -b subspace-x master &&\n"> <"\tcommit subspace-x &&\n"> <"\tgit checkout -b other/three master &&\n"> <"\tcommit three &&\n"> <"\tgit checkout -b someref master &&\n"> <"\tcommit some &&\n"> <"\tgit checkout master &&\n"> <"\tcommit master2 &&\n"> <"\tgit tag foo/bar master &&\n"> <"\tcommit master3 &&\n"> <"\tgit update-ref refs/remotes/foo/baz master &&\n"> <"\tcommit master4\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-parse --glob=refs/heads/subspace/*">)} { (SQ <"\n"> <"\n"> <"\tcompare rev-parse \"subspace/one subspace/two\" \"--glob=refs/heads/subspace/*\"\n"> <"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-parse --glob=heads/subspace/*">)} { (SQ <"\n"> <"\n"> <"\tcompare rev-parse \"subspace/one subspace/two\" \"--glob=heads/subspace/*\"\n"> <"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-parse --glob=refs/heads/subspace/">)} { (SQ <"\n"> <"\n"> <"\tcompare rev-parse \"subspace/one subspace/two\" \"--glob=refs/heads/subspace/\"\n"> <"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-parse --glob=heads/subspace/">)} { (SQ <"\n"> <"\n"> <"\tcompare rev-parse \"subspace/one subspace/two\" \"--glob=heads/subspace/\"\n"> <"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-parse --glob=heads/subspace">)} { (SQ <"\n"> <"\n"> <"\tcompare rev-parse \"subspace/one subspace/two\" \"--glob=heads/subspace\"\n"> <"\n"> ) } ) (C {(test_expect_failure)} {(SQ <"rev-parse accepts --glob as detached option">)} { (SQ <"\n"> <"\n"> <"\tcompare rev-parse \"subspace/one subspace/two\" \"--glob heads/subspace\"\n"> <"\n"> ) } ) (C {(test_expect_failure)} {(SQ <"rev-parse is not confused by option-like glob">)} {(SQ <"\n"> <"\n"> <"\tcompare rev-parse \"master\" \"--glob --symbolic master\"\n"> <"\n">)} ) (C {(test_expect_success)} {(SQ <"rev-parse --branches=subspace/*">)} { (SQ <"\n"> <"\n"> <"\tcompare rev-parse \"subspace/one subspace/two\" \"--branches=subspace/*\"\n"> <"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-parse --branches=subspace/">)} { (SQ <"\n"> <"\n"> <"\tcompare rev-parse \"subspace/one subspace/two\" \"--branches=subspace/\"\n"> <"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-parse --branches=subspace">)} { (SQ <"\n"> <"\n"> <"\tcompare rev-parse \"subspace/one subspace/two\" \"--branches=subspace\"\n"> <"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-parse --glob=heads/subspace/* --glob=heads/other/*">)} { (SQ <"\n"> <"\n"> < "\tcompare rev-parse \"subspace/one subspace/two other/three\" \"--glob=heads/subspace/* --glob=heads/other/*\"\n" > <"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-parse --glob=heads/someref/* master">)} { (SQ <"\n"> <"\n"> <"\tcompare rev-parse \"master\" \"--glob=heads/someref/* master\"\n"> <"\n">) } ) (C {(test_expect_success)} {(SQ <"rev-parse --glob=heads/*">)} { (SQ <"\n"> <"\n"> < "\tcompare rev-parse \"master other/three someref subspace-x subspace/one subspace/two\" \"--glob=heads/*\"\n" > <"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-parse --tags=foo">)} {(SQ <"\n"> <"\n"> <"\tcompare rev-parse \"foo/bar\" \"--tags=foo\"\n"> <"\n">)} ) (C {(test_expect_success)} {(SQ <"rev-parse --remotes=foo">)} {(SQ <"\n"> <"\n"> <"\tcompare rev-parse \"foo/baz\" \"--remotes=foo\"\n"> <"\n">)} ) (C {(test_expect_success)} {(SQ <"rev-parse --exclude with --branches">)} { (SQ <"\n"> <"\tcompare rev-parse \"--exclude=*/* --branches\" \"master someref subspace-x\"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-parse --exclude with --all">)} { (SQ <"\n"> <"\tcompare rev-parse \"--exclude=refs/remotes/* --all\" \"--branches --tags\"\n">) } ) (C {(test_expect_success)} {(SQ <"rev-parse accumulates multiple --exclude">)} { (SQ <"\n"> < "\tcompare rev-parse \"--exclude=refs/remotes/* --exclude=refs/tags/* --all\" --branches\n" > ) } ) (C {(test_expect_success)} {(SQ <"rev-list --glob=refs/heads/subspace/*">)} { (SQ <"\n"> <"\n"> <"\tcompare rev-list \"subspace/one subspace/two\" \"--glob=refs/heads/subspace/*\"\n"> <"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-list --glob refs/heads/subspace/*">)} { (SQ <"\n"> <"\n"> <"\tcompare rev-list \"subspace/one subspace/two\" \"--glob refs/heads/subspace/*\"\n"> <"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-list not confused by option-like --glob arg">)} {(SQ <"\n"> <"\n"> <"\tcompare rev-list \"master\" \"--glob -0 master\"\n"> <"\n">)} ) (C {(test_expect_success)} {(SQ <"rev-list --glob=heads/subspace/*">)} { (SQ <"\n"> <"\n"> <"\tcompare rev-list \"subspace/one subspace/two\" \"--glob=heads/subspace/*\"\n"> <"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-list --glob=refs/heads/subspace/">)} { (SQ <"\n"> <"\n"> <"\tcompare rev-list \"subspace/one subspace/two\" \"--glob=refs/heads/subspace/\"\n"> <"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-list --glob=heads/subspace/">)} { (SQ <"\n"> <"\n"> <"\tcompare rev-list \"subspace/one subspace/two\" \"--glob=heads/subspace/\"\n"> <"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-list --glob=heads/subspace">)} { (SQ <"\n"> <"\n"> <"\tcompare rev-list \"subspace/one subspace/two\" \"--glob=heads/subspace\"\n"> <"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-list --branches=subspace/*">)} { (SQ <"\n"> <"\n"> <"\tcompare rev-list \"subspace/one subspace/two\" \"--branches=subspace/*\"\n"> <"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-list --branches=subspace/">)} { (SQ <"\n"> <"\n"> <"\tcompare rev-list \"subspace/one subspace/two\" \"--branches=subspace/\"\n"> <"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-list --branches=subspace">)} { (SQ <"\n"> <"\n"> <"\tcompare rev-list \"subspace/one subspace/two\" \"--branches=subspace\"\n"> <"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-list --branches">)} { (SQ <"\n"> <"\n"> < "\tcompare rev-list \"master subspace-x someref other/three subspace/one subspace/two\" \"--branches\"\n" > <"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-list --glob=heads/someref/* master">)} { (SQ <"\n"> <"\n"> <"\tcompare rev-list \"master\" \"--glob=heads/someref/* master\"\n"> <"\n">) } ) (C {(test_expect_success)} {(SQ <"rev-list --glob=heads/subspace/* --glob=heads/other/*">)} { (SQ <"\n"> <"\n"> < "\tcompare rev-list \"subspace/one subspace/two other/three\" \"--glob=heads/subspace/* --glob=heads/other/*\"\n" > <"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-list --glob=heads/*">)} { (SQ <"\n"> <"\n"> < "\tcompare rev-list \"master other/three someref subspace-x subspace/one subspace/two\" \"--glob=heads/*\"\n" > <"\n"> ) } ) (C {(test_expect_success)} {(SQ <"rev-list --tags=foo">)} {(SQ <"\n"> <"\n"> <"\tcompare rev-list \"foo/bar\" \"--tags=foo\"\n"> <"\n">)} ) (C {(test_expect_success)} {(SQ <"rev-list --tags">)} {(SQ <"\n"> <"\n"> <"\tcompare rev-list \"foo/bar\" \"--tags\"\n"> <"\n">)} ) (C {(test_expect_success)} {(SQ <"rev-list --remotes=foo">)} {(SQ <"\n"> <"\n"> <"\tcompare rev-list \"foo/baz\" \"--remotes=foo\"\n"> <"\n">)} ) (C {(test_expect_success)} {(SQ <"rev-list --exclude with --branches">)} { (SQ <"\n"> <"\tcompare rev-list \"--exclude=*/* --branches\" \"master someref subspace-x\"\n">) } ) (C {(test_expect_success)} {(SQ <"rev-list --exclude with --all">)} {(SQ <"\n"> <"\tcompare rev-list \"--exclude=refs/remotes/* --all\" \"--branches --tags\"\n">)} ) (C {(test_expect_success)} {(SQ <"rev-list accumulates multiple --exclude">)} { (SQ <"\n"> < "\tcompare rev-list \"--exclude=refs/remotes/* --exclude=refs/tags/* --all\" --branches\n" > ) } ) (C {(test_expect_failure)} {(SQ <"rev-list may want to succeed with empty output on no input (1)">)} { (SQ <"\n"> <"\t>expect &&\n"> <"\tgit rev-list --stdin actual &&\n"> <"\ttest_cmp expect actual\n"> ) } ) (C {(test_expect_failure)} {(SQ <"rev-list may want to succeed with empty output on no input (2)">)} { (SQ <"\n"> <"\t>expect &&\n"> <"\tgit rev-list --exclude=* --all >actual &&\n"> <"\ttest_cmp expect actual\n"> ) } ) (C {(test_expect_failure)} {(SQ <"rev-list may want to succeed with empty output on no input (3)">)} { (SQ <"\n"> <"\t(\n"> <"\t\ttest_create_repo empty &&\n"> <"\t\tcd empty &&\n"> <"\t\t>expect &&\n"> <"\t\tgit rev-list --all >actual &&\n"> <"\t\ttest_cmp expect actual\n"> <"\t)\n"> ) } ) (C {(test_expect_success)} {(SQ <"shortlog accepts --glob/--tags/--remotes">)} { (SQ <"\n"> <"\n"> <"\tcompare shortlog \"subspace/one subspace/two\" --branches=subspace &&\n"> <"\tcompare shortlog \\\n"> <"\t \"master subspace-x someref other/three subspace/one subspace/two\" \\\n"> <"\t --branches &&\n"> <"\tcompare shortlog master \"--glob=heads/someref/* master\" &&\n"> <"\tcompare shortlog \"subspace/one subspace/two other/three\" \\\n"> <"\t \"--glob=heads/subspace/* --glob=heads/other/*\" &&\n"> <"\tcompare shortlog \\\n"> <"\t \"master other/three someref subspace-x subspace/one subspace/two\" \\\n"> <"\t \"--glob=heads/*\" &&\n"> <"\tcompare shortlog foo/bar --tags=foo &&\n"> <"\tcompare shortlog foo/bar --tags &&\n"> <"\tcompare shortlog foo/baz --remotes=foo\n"> <"\n"> ) } ) (C {(test_expect_failure)} {(SQ <"shortlog accepts --glob as detached option">)} { (SQ <"\n"> <"\n"> <"\tcompare shortlog \\\n"> <"\t \"master other/three someref subspace-x subspace/one subspace/two\" \\\n"> <"\t \"--glob heads/*\"\n"> <"\n"> ) } ) (C {(test_expect_failure)} {(SQ <"shortlog --glob is not confused by option-like argument">)} {(SQ <"\n"> <"\n"> <"\tcompare shortlog master \"--glob -e master\"\n"> <"\n">)} ) (C {(test_done)}) ] )