ohloh_scm 2.5.1 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/{bin → .bin}/accept_svn_ssl_certificate +0 -0
- data/.bin/check_scm_version +28 -0
- data/.bin/run-test +3 -0
- data/.bin/run-tests +3 -0
- data/{bin → .bin}/string_encoder +0 -0
- data/.git_hooks/pre-commit +20 -0
- data/.gitignore +1 -4
- data/.rubocop.yml +13 -0
- data/.ruby-version +1 -2
- data/.travis.yml +3 -2
- data/Dockerfile +8 -4
- data/Gemfile +14 -0
- data/Gemfile.lock +54 -0
- data/{COPYING → LICENSE.txt} +0 -0
- data/README.md +52 -116
- data/Rakefile +7 -29
- data/lib/ohloh_scm.rb +26 -32
- data/lib/ohloh_scm/activity.rb +38 -0
- data/lib/ohloh_scm/bzr.rb +12 -0
- data/lib/ohloh_scm/bzr/activity.rb +191 -0
- data/lib/ohloh_scm/bzr/scm.rb +24 -0
- data/lib/ohloh_scm/bzr/status.rb +8 -0
- data/lib/ohloh_scm/bzr/validation.rb +18 -0
- data/lib/ohloh_scm/commit.rb +44 -41
- data/lib/ohloh_scm/core.rb +22 -0
- data/lib/ohloh_scm/cvs.rb +11 -0
- data/lib/ohloh_scm/cvs/activity.rb +149 -0
- data/lib/ohloh_scm/cvs/scm.rb +149 -0
- data/lib/ohloh_scm/cvs/status.rb +14 -0
- data/lib/ohloh_scm/cvs/validation.rb +106 -0
- data/lib/ohloh_scm/data/git_ignore_list.rb +29 -0
- data/lib/ohloh_scm/diff.rb +42 -39
- data/lib/ohloh_scm/factory.rb +11 -0
- data/lib/ohloh_scm/git.rb +11 -0
- data/lib/ohloh_scm/git/activity.rb +317 -0
- data/lib/ohloh_scm/git/scm.rb +137 -0
- data/lib/ohloh_scm/git/status.rb +13 -0
- data/lib/ohloh_scm/git/validation.rb +18 -0
- data/lib/ohloh_scm/git_svn.rb +11 -0
- data/lib/ohloh_scm/git_svn/activity.rb +84 -0
- data/lib/ohloh_scm/git_svn/scm.rb +91 -0
- data/lib/ohloh_scm/git_svn/status.rb +8 -0
- data/lib/ohloh_scm/git_svn/validation.rb +8 -0
- data/lib/ohloh_scm/hg.rb +12 -0
- data/lib/ohloh_scm/hg/activity.rb +188 -0
- data/lib/ohloh_scm/hg/scm.rb +51 -0
- data/lib/ohloh_scm/hg/status.rb +8 -0
- data/lib/ohloh_scm/hg/validation.rb +18 -0
- data/lib/ohloh_scm/parser.rb +30 -0
- data/lib/ohloh_scm/parser/array_writer.rb +15 -0
- data/lib/ohloh_scm/parser/branch_number.rb +63 -0
- data/lib/ohloh_scm/{parsers → parser}/bzr_xml_parser.rb +65 -55
- data/lib/ohloh_scm/parser/cvs_parser.rb +161 -0
- data/lib/ohloh_scm/parser/git_parser.rb +128 -0
- data/lib/ohloh_scm/parser/hg_parser.rb +78 -0
- data/lib/ohloh_scm/{parsers → parser}/hg_style +0 -0
- data/lib/ohloh_scm/{parsers → parser}/hg_verbose_style +0 -0
- data/lib/ohloh_scm/parser/svn_parser.rb +83 -0
- data/lib/ohloh_scm/py_bridge.rb +9 -0
- data/lib/ohloh_scm/py_bridge/bzr_client.rb +28 -0
- data/lib/ohloh_scm/{adapters/bzrlib/bzrlib_pipe_server.py → py_bridge/bzr_server.py} +1 -1
- data/lib/ohloh_scm/py_bridge/hg_client.rb +30 -0
- data/lib/ohloh_scm/{adapters/hglib/server.py → py_bridge/hg_server.py} +0 -0
- data/lib/ohloh_scm/py_bridge/py_client.rb +45 -0
- data/lib/ohloh_scm/scm.rb +26 -0
- data/lib/ohloh_scm/status.rb +24 -0
- data/lib/ohloh_scm/string_extensions.rb +11 -0
- data/lib/ohloh_scm/svn.rb +11 -0
- data/lib/ohloh_scm/svn/activity.rb +95 -0
- data/lib/ohloh_scm/svn/scm.rb +95 -0
- data/lib/ohloh_scm/svn/status.rb +8 -0
- data/lib/ohloh_scm/svn/validation.rb +56 -0
- data/lib/ohloh_scm/system.rb +44 -0
- data/lib/ohloh_scm/validation.rb +83 -0
- data/lib/ohloh_scm/version.rb +8 -1
- data/ohloh_scm.gemspec +18 -15
- data/spec/.rubocop.yml +22 -0
- data/spec/benchmarks/hg_bzr_bash_vs_py_api.rb +39 -0
- data/spec/benchmarks/process_spawn_benchmark.rb +133 -0
- data/spec/helpers/assert_scm_attr_helper.rb +31 -0
- data/spec/helpers/commit_tokens_helper.rb +26 -0
- data/spec/helpers/generic_helper.rb +5 -0
- data/spec/helpers/repository_helper.rb +36 -0
- data/spec/helpers/system_helper.rb +25 -0
- data/spec/ohloh_scm/bzr/activity_spec.rb +460 -0
- data/spec/ohloh_scm/bzr/scm_spec.rb +17 -0
- data/spec/ohloh_scm/bzr/validation_spec.rb +37 -0
- data/spec/ohloh_scm/cvs/activity_spec.rb +93 -0
- data/spec/ohloh_scm/cvs/scm_spec.rb +112 -0
- data/spec/ohloh_scm/cvs/validation_spec.rb +78 -0
- data/spec/ohloh_scm/factory_spec.rb +16 -0
- data/spec/ohloh_scm/git/activity_spec.rb +402 -0
- data/spec/ohloh_scm/git/scm_spec.rb +57 -0
- data/spec/ohloh_scm/git/status_spec.rb +11 -0
- data/spec/ohloh_scm/git/validation_spec.rb +57 -0
- data/spec/ohloh_scm/git_svn/activity_spec.rb +89 -0
- data/spec/ohloh_scm/git_svn/scm_spec.rb +22 -0
- data/spec/ohloh_scm/hg/activity_spec.rb +323 -0
- data/spec/ohloh_scm/hg/scm_spec.rb +23 -0
- data/spec/ohloh_scm/hg/status_spec.rb +12 -0
- data/spec/ohloh_scm/hg/validation_spec.rb +32 -0
- data/spec/ohloh_scm/parser/array_writer_spec.rb +29 -0
- data/spec/ohloh_scm/parser/branch_number_spec.rb +126 -0
- data/spec/ohloh_scm/parser/cvs_parser_spec.rb +77 -0
- data/spec/ohloh_scm/parser/git_parser_spec.rb +102 -0
- data/spec/ohloh_scm/parser/hg_parser_spec.rb +194 -0
- data/spec/ohloh_scm/svn/activity_spec.rb +55 -0
- data/spec/ohloh_scm/svn/scm_spec.rb +75 -0
- data/spec/ohloh_scm/svn/validation_spec.rb +89 -0
- data/spec/ohloh_scm/svn_parser_spec.rb +146 -0
- data/spec/ohloh_scm/system_spec.rb +32 -0
- data/spec/ohloh_scm/version_spec.rb +9 -0
- data/{test/data → spec/raw_fixtures}/basic.rlog +0 -0
- data/{test/data → spec/raw_fixtures}/file_created_on_branch.rlog +0 -0
- data/{test/data → spec/raw_fixtures}/invalid-utf-word +0 -0
- data/{test/data → spec/raw_fixtures}/multiple_revisions.rlog +0 -0
- data/{test/data → spec/raw_fixtures}/sample-content +0 -0
- data/{test/data → spec/raw_fixtures}/simple.ohlog +1 -1
- data/{test/data → spec/raw_fixtures}/simple.svn_log +0 -0
- data/{test/data → spec/raw_fixtures}/simultaneous_checkins.rlog +0 -0
- data/{test/data → spec/raw_fixtures}/simultaneous_checkins_2.rlog +0 -0
- data/spec/scm_fixtures/bzr.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/bzr_colon.tgz +0 -0
- data/spec/scm_fixtures/bzr_large.tgz +0 -0
- data/spec/scm_fixtures/bzr_with_authors.tgz +0 -0
- data/spec/scm_fixtures/bzr_with_branch.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/bzr_with_invalid_encoding.tgz +0 -0
- data/spec/scm_fixtures/bzr_with_nested_branches.tgz +0 -0
- data/spec/scm_fixtures/bzr_with_subdirectories.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/cvs.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/git.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/git_dupe_delete.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/git_svn.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/git_walk.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/git_with_invalid_encoding.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/git_with_master_tag.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/git_with_multiple_branch.tgz +0 -0
- data/spec/scm_fixtures/git_with_mv.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/git_with_null_merge.tgz +0 -0
- data/spec/scm_fixtures/git_with_submodules.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/hg.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/hg_dupe_delete.tgz +0 -0
- data/spec/scm_fixtures/hg_large.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/hg_walk.tgz +0 -0
- data/{test/repositories → spec/scm_fixtures}/hg_with_invalid_encoding.tgz +0 -0
- data/spec/scm_fixtures/svn.tgz +0 -0
- data/spec/scm_fixtures/svn_subdir.tgz +0 -0
- data/spec/spec_helper.rb +32 -0
- data/spec/string_encoder_spec.rb +32 -0
- metadata +224 -1052
- data/bin/ohlog +0 -152
- data/lib/ohloh_scm/adapters/abstract/misc.rb +0 -12
- data/lib/ohloh_scm/adapters/abstract/sha1.rb +0 -48
- data/lib/ohloh_scm/adapters/abstract/system.rb +0 -60
- data/lib/ohloh_scm/adapters/abstract/validation.rb +0 -77
- data/lib/ohloh_scm/adapters/abstract_adapter.rb +0 -32
- data/lib/ohloh_scm/adapters/bzr/cat_file.rb +0 -25
- data/lib/ohloh_scm/adapters/bzr/commits.rb +0 -100
- data/lib/ohloh_scm/adapters/bzr/head.rb +0 -19
- data/lib/ohloh_scm/adapters/bzr/misc.rb +0 -61
- data/lib/ohloh_scm/adapters/bzr/pull.rb +0 -22
- data/lib/ohloh_scm/adapters/bzr/push.rb +0 -51
- data/lib/ohloh_scm/adapters/bzr/validation.rb +0 -16
- data/lib/ohloh_scm/adapters/bzr_adapter.rb +0 -15
- data/lib/ohloh_scm/adapters/bzrlib/bzrlib_pipe_client.rb +0 -71
- data/lib/ohloh_scm/adapters/bzrlib/cat_file.rb +0 -9
- data/lib/ohloh_scm/adapters/bzrlib/head.rb +0 -9
- data/lib/ohloh_scm/adapters/bzrlib_adapter.rb +0 -25
- data/lib/ohloh_scm/adapters/cvs/commits.rb +0 -97
- data/lib/ohloh_scm/adapters/cvs/misc.rb +0 -212
- data/lib/ohloh_scm/adapters/cvs/validation.rb +0 -77
- data/lib/ohloh_scm/adapters/cvs_adapter.rb +0 -18
- data/lib/ohloh_scm/adapters/factory.rb +0 -38
- data/lib/ohloh_scm/adapters/git/cat_file.rb +0 -16
- data/lib/ohloh_scm/adapters/git/commit_all.rb +0 -141
- data/lib/ohloh_scm/adapters/git/commits.rb +0 -122
- data/lib/ohloh_scm/adapters/git/head.rb +0 -21
- data/lib/ohloh_scm/adapters/git/misc.rb +0 -107
- data/lib/ohloh_scm/adapters/git/patch.rb +0 -9
- data/lib/ohloh_scm/adapters/git/pull.rb +0 -124
- data/lib/ohloh_scm/adapters/git/push.rb +0 -39
- data/lib/ohloh_scm/adapters/git/token.rb +0 -53
- data/lib/ohloh_scm/adapters/git/validation.rb +0 -50
- data/lib/ohloh_scm/adapters/git_adapter.rb +0 -18
- data/lib/ohloh_scm/adapters/git_svn/cat_file.rb +0 -22
- data/lib/ohloh_scm/adapters/git_svn/commits.rb +0 -57
- data/lib/ohloh_scm/adapters/git_svn/head.rb +0 -9
- data/lib/ohloh_scm/adapters/git_svn/misc.rb +0 -24
- data/lib/ohloh_scm/adapters/git_svn/pull.rb +0 -80
- data/lib/ohloh_scm/adapters/git_svn_adapter.rb +0 -13
- data/lib/ohloh_scm/adapters/hg/cat_file.rb +0 -28
- data/lib/ohloh_scm/adapters/hg/commits.rb +0 -112
- data/lib/ohloh_scm/adapters/hg/head.rb +0 -29
- data/lib/ohloh_scm/adapters/hg/misc.rb +0 -40
- data/lib/ohloh_scm/adapters/hg/patch.rb +0 -9
- data/lib/ohloh_scm/adapters/hg/pull.rb +0 -23
- data/lib/ohloh_scm/adapters/hg/push.rb +0 -51
- data/lib/ohloh_scm/adapters/hg/validation.rb +0 -26
- data/lib/ohloh_scm/adapters/hg_adapter.rb +0 -21
- data/lib/ohloh_scm/adapters/hglib/cat_file.rb +0 -14
- data/lib/ohloh_scm/adapters/hglib/client.rb +0 -62
- data/lib/ohloh_scm/adapters/hglib/head.rb +0 -9
- data/lib/ohloh_scm/adapters/hglib_adapter.rb +0 -25
- data/lib/ohloh_scm/adapters/svn/cat_file.rb +0 -19
- data/lib/ohloh_scm/adapters/svn/commits.rb +0 -195
- data/lib/ohloh_scm/adapters/svn/head.rb +0 -19
- data/lib/ohloh_scm/adapters/svn/misc.rb +0 -171
- data/lib/ohloh_scm/adapters/svn/patch.rb +0 -8
- data/lib/ohloh_scm/adapters/svn/pre-revprop-change +0 -2
- data/lib/ohloh_scm/adapters/svn/pull.rb +0 -77
- data/lib/ohloh_scm/adapters/svn/push.rb +0 -15
- data/lib/ohloh_scm/adapters/svn/validation.rb +0 -87
- data/lib/ohloh_scm/adapters/svn_adapter.rb +0 -17
- data/lib/ohloh_scm/adapters/svn_chain/cat_file.rb +0 -8
- data/lib/ohloh_scm/adapters/svn_chain/chain.rb +0 -100
- data/lib/ohloh_scm/adapters/svn_chain/commits.rb +0 -37
- data/lib/ohloh_scm/adapters/svn_chain_adapter.rb +0 -44
- data/lib/ohloh_scm/parsers/array_writer.rb +0 -19
- data/lib/ohloh_scm/parsers/branch_number.rb +0 -60
- data/lib/ohloh_scm/parsers/bzr_parser.rb +0 -128
- data/lib/ohloh_scm/parsers/cvs_parser.rb +0 -182
- data/lib/ohloh_scm/parsers/git_parser.rb +0 -67
- data/lib/ohloh_scm/parsers/git_styled_parser.rb +0 -95
- data/lib/ohloh_scm/parsers/hg_parser.rb +0 -63
- data/lib/ohloh_scm/parsers/hg_styled_parser.rb +0 -65
- data/lib/ohloh_scm/parsers/human_writer.rb +0 -49
- data/lib/ohloh_scm/parsers/parser.rb +0 -34
- data/lib/ohloh_scm/parsers/svn_parser.rb +0 -77
- data/lib/ohloh_scm/parsers/svn_xml_parser.rb +0 -62
- data/lib/ohloh_scm/parsers/xml_writer.rb +0 -62
- data/lib/ohloh_scm/scratch_dir.rb +0 -59
- data/lib/ohloh_scm/shellout.rb +0 -40
- data/log/.gitignore +0 -1
- data/test/bin/svn +0 -7
- data/test/data/basic.ohlog +0 -11
- data/test/data/branch_merge.bzr_xml_log +0 -87
- data/test/data/git_patch.diff +0 -19
- data/test/data/helloworld.log +0 -41
- data/test/data/hg_patch.diff +0 -9
- data/test/data/intelliglue.rlog +0 -1216
- data/test/data/multiple_commits.rlog +0 -64
- data/test/data/simple.bzr_xml_log +0 -41
- data/test/data/simple.svn_xml_log +0 -66
- data/test/data/svn_patch.diff +0 -9
- data/test/data/svn_with_invalid_encoding.log +0 -33
- data/test/repositories/bzr/.bzr/README +0 -3
- data/test/repositories/bzr/.bzr/branch-format +0 -1
- data/test/repositories/bzr/.bzr/branch/branch.conf +0 -0
- data/test/repositories/bzr/.bzr/branch/format +0 -1
- data/test/repositories/bzr/.bzr/branch/last-revision +0 -1
- data/test/repositories/bzr/.bzr/branch/tags +0 -1
- data/test/repositories/bzr/.bzr/checkout/conflicts +0 -1
- data/test/repositories/bzr/.bzr/checkout/dirstate +0 -0
- data/test/repositories/bzr/.bzr/checkout/format +0 -1
- data/test/repositories/bzr/.bzr/repository/format +0 -1
- data/test/repositories/bzr/.bzr/repository/indices/0428489d1a03d05c496c2c429fe96e90.iix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/0428489d1a03d05c496c2c429fe96e90.rix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/0428489d1a03d05c496c2c429fe96e90.six +0 -5
- data/test/repositories/bzr/.bzr/repository/indices/0428489d1a03d05c496c2c429fe96e90.tix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/62f9cada7c58bce361b9b852d180ff56.iix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/62f9cada7c58bce361b9b852d180ff56.rix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/62f9cada7c58bce361b9b852d180ff56.six +0 -5
- data/test/repositories/bzr/.bzr/repository/indices/62f9cada7c58bce361b9b852d180ff56.tix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/71af8bae249bcb824a4ff17c62029142.iix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/71af8bae249bcb824a4ff17c62029142.rix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/71af8bae249bcb824a4ff17c62029142.six +0 -5
- data/test/repositories/bzr/.bzr/repository/indices/71af8bae249bcb824a4ff17c62029142.tix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/7202eb77b81a80eca5296f317ed42149.iix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/7202eb77b81a80eca5296f317ed42149.rix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/7202eb77b81a80eca5296f317ed42149.six +0 -5
- data/test/repositories/bzr/.bzr/repository/indices/7202eb77b81a80eca5296f317ed42149.tix +0 -5
- data/test/repositories/bzr/.bzr/repository/indices/8a571ba35ee54cd133b71e967442fe17.iix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/8a571ba35ee54cd133b71e967442fe17.rix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/8a571ba35ee54cd133b71e967442fe17.six +0 -5
- data/test/repositories/bzr/.bzr/repository/indices/8a571ba35ee54cd133b71e967442fe17.tix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/a06b9c10004fc3e05affee8cf0a9febd.iix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/a06b9c10004fc3e05affee8cf0a9febd.rix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/a06b9c10004fc3e05affee8cf0a9febd.six +0 -5
- data/test/repositories/bzr/.bzr/repository/indices/a06b9c10004fc3e05affee8cf0a9febd.tix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/f35e1020b6a55c81b6d2fe4c7bcd4645.iix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/f35e1020b6a55c81b6d2fe4c7bcd4645.rix +0 -0
- data/test/repositories/bzr/.bzr/repository/indices/f35e1020b6a55c81b6d2fe4c7bcd4645.six +0 -5
- data/test/repositories/bzr/.bzr/repository/indices/f35e1020b6a55c81b6d2fe4c7bcd4645.tix +0 -0
- data/test/repositories/bzr/.bzr/repository/pack-names +0 -0
- data/test/repositories/bzr/.bzr/repository/packs/0428489d1a03d05c496c2c429fe96e90.pack +0 -0
- data/test/repositories/bzr/.bzr/repository/packs/62f9cada7c58bce361b9b852d180ff56.pack +0 -0
- data/test/repositories/bzr/.bzr/repository/packs/71af8bae249bcb824a4ff17c62029142.pack +0 -0
- data/test/repositories/bzr/.bzr/repository/packs/7202eb77b81a80eca5296f317ed42149.pack +0 -0
- data/test/repositories/bzr/.bzr/repository/packs/8a571ba35ee54cd133b71e967442fe17.pack +0 -0
- data/test/repositories/bzr/.bzr/repository/packs/a06b9c10004fc3e05affee8cf0a9febd.pack +0 -0
- data/test/repositories/bzr/.bzr/repository/packs/f35e1020b6a55c81b6d2fe4c7bcd4645.pack +0 -0
- data/test/repositories/bzr/.bzr/repository/upload/.gitignore +0 -1
- data/test/repositories/bzr/C/303/251dric.txt +0 -2
- data/test/repositories/bzr/file1.txt +0 -2
- data/test/repositories/bzr/file3.txt +0 -1
- data/test/repositories/bzr/file4.txt +0 -1
- data/test/repositories/bzr/file5.txt +0 -4
- data/test/repositories/bzr_hello_world/.bzr/README +0 -3
- data/test/repositories/bzr_hello_world/.bzr/branch-format +0 -1
- data/test/repositories/bzr_hello_world/.bzr/branch/branch.conf +0 -0
- data/test/repositories/bzr_hello_world/.bzr/branch/format +0 -1
- data/test/repositories/bzr_hello_world/.bzr/branch/last-revision +0 -1
- data/test/repositories/bzr_hello_world/.bzr/branch/tags +0 -0
- data/test/repositories/bzr_hello_world/.bzr/checkout/conflicts +0 -1
- data/test/repositories/bzr_hello_world/.bzr/checkout/dirstate +0 -0
- data/test/repositories/bzr_hello_world/.bzr/checkout/format +0 -1
- data/test/repositories/bzr_hello_world/.bzr/repository/format +0 -1
- data/test/repositories/bzr_hello_world/.bzr/repository/indices/a7cd0d6de5d8b3efdd5f61a4caeda296.iix +0 -0
- data/test/repositories/bzr_hello_world/.bzr/repository/indices/a7cd0d6de5d8b3efdd5f61a4caeda296.rix +0 -0
- data/test/repositories/bzr_hello_world/.bzr/repository/indices/a7cd0d6de5d8b3efdd5f61a4caeda296.six +0 -5
- data/test/repositories/bzr_hello_world/.bzr/repository/indices/a7cd0d6de5d8b3efdd5f61a4caeda296.tix +0 -0
- data/test/repositories/bzr_hello_world/.bzr/repository/indices/ed1e97c1213220a92ff857169867a7b3.iix +0 -0
- data/test/repositories/bzr_hello_world/.bzr/repository/indices/ed1e97c1213220a92ff857169867a7b3.rix +0 -0
- data/test/repositories/bzr_hello_world/.bzr/repository/indices/ed1e97c1213220a92ff857169867a7b3.six +0 -5
- data/test/repositories/bzr_hello_world/.bzr/repository/indices/ed1e97c1213220a92ff857169867a7b3.tix +0 -0
- data/test/repositories/bzr_hello_world/.bzr/repository/pack-names +0 -0
- data/test/repositories/bzr_hello_world/.bzr/repository/packs/a7cd0d6de5d8b3efdd5f61a4caeda296.pack +0 -0
- data/test/repositories/bzr_hello_world/.bzr/repository/packs/ed1e97c1213220a92ff857169867a7b3.pack +0 -0
- data/test/repositories/bzr_hello_world/helloworld.c +0 -6
- data/test/repositories/bzr_with_authors/.bzr/README +0 -3
- data/test/repositories/bzr_with_authors/.bzr/branch-format +0 -1
- data/test/repositories/bzr_with_authors/.bzr/branch/branch.conf +0 -0
- data/test/repositories/bzr_with_authors/.bzr/branch/format +0 -1
- data/test/repositories/bzr_with_authors/.bzr/branch/last-revision +0 -1
- data/test/repositories/bzr_with_authors/.bzr/branch/tags +0 -0
- data/test/repositories/bzr_with_authors/.bzr/checkout/conflicts +0 -1
- data/test/repositories/bzr_with_authors/.bzr/checkout/dirstate +0 -0
- data/test/repositories/bzr_with_authors/.bzr/checkout/format +0 -1
- data/test/repositories/bzr_with_authors/.bzr/checkout/views +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/format +0 -1
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/1326ecee2f4f69991771137c5307689a.cix +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/1326ecee2f4f69991771137c5307689a.iix +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/1326ecee2f4f69991771137c5307689a.rix +0 -6
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/1326ecee2f4f69991771137c5307689a.six +0 -5
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/1326ecee2f4f69991771137c5307689a.tix +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/adf730b6cf7c7959afcedb87e155654d.cix +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/adf730b6cf7c7959afcedb87e155654d.iix +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/adf730b6cf7c7959afcedb87e155654d.rix +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/adf730b6cf7c7959afcedb87e155654d.six +0 -5
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/adf730b6cf7c7959afcedb87e155654d.tix +0 -6
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/d2613fcfb5e48e79073b96270782f95c.cix +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/d2613fcfb5e48e79073b96270782f95c.iix +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/d2613fcfb5e48e79073b96270782f95c.rix +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/d2613fcfb5e48e79073b96270782f95c.six +0 -5
- data/test/repositories/bzr_with_authors/.bzr/repository/indices/d2613fcfb5e48e79073b96270782f95c.tix +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/pack-names +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/packs/1326ecee2f4f69991771137c5307689a.pack +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/packs/adf730b6cf7c7959afcedb87e155654d.pack +0 -0
- data/test/repositories/bzr_with_authors/.bzr/repository/packs/d2613fcfb5e48e79073b96270782f95c.pack +0 -0
- data/test/repositories/bzr_with_authors/test.txt +0 -1
- data/test/repositories/bzr_with_branch/.bzr/README +0 -3
- data/test/repositories/bzr_with_branch/.bzr/branch-format +0 -1
- data/test/repositories/bzr_with_branch/.bzr/branch/branch.conf +0 -1
- data/test/repositories/bzr_with_branch/.bzr/branch/format +0 -1
- data/test/repositories/bzr_with_branch/.bzr/branch/last-revision +0 -1
- data/test/repositories/bzr_with_branch/.bzr/branch/tags +0 -0
- data/test/repositories/bzr_with_branch/.bzr/checkout/conflicts +0 -1
- data/test/repositories/bzr_with_branch/.bzr/checkout/dirstate +0 -0
- data/test/repositories/bzr_with_branch/.bzr/checkout/format +0 -1
- data/test/repositories/bzr_with_branch/.bzr/checkout/merge-hashes +0 -3
- data/test/repositories/bzr_with_branch/.bzr/repository/format +0 -1
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/3336f250dbe86a7eec2de4c1b1f97db7.iix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/3336f250dbe86a7eec2de4c1b1f97db7.rix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/3336f250dbe86a7eec2de4c1b1f97db7.six +0 -5
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/3336f250dbe86a7eec2de4c1b1f97db7.tix +0 -5
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/47cfe65310e6d462bb87a68fff0bc162.iix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/47cfe65310e6d462bb87a68fff0bc162.rix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/47cfe65310e6d462bb87a68fff0bc162.six +0 -5
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/47cfe65310e6d462bb87a68fff0bc162.tix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/64e98edbf1aebe6f532f2f93b24eead8.iix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/64e98edbf1aebe6f532f2f93b24eead8.rix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/64e98edbf1aebe6f532f2f93b24eead8.six +0 -5
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/64e98edbf1aebe6f532f2f93b24eead8.tix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/8008794e258fc3fa4be68d538312a91c.iix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/8008794e258fc3fa4be68d538312a91c.rix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/8008794e258fc3fa4be68d538312a91c.six +0 -5
- data/test/repositories/bzr_with_branch/.bzr/repository/indices/8008794e258fc3fa4be68d538312a91c.tix +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/pack-names +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/packs/3336f250dbe86a7eec2de4c1b1f97db7.pack +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/packs/47cfe65310e6d462bb87a68fff0bc162.pack +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/packs/64e98edbf1aebe6f532f2f93b24eead8.pack +0 -0
- data/test/repositories/bzr_with_branch/.bzr/repository/packs/8008794e258fc3fa4be68d538312a91c.pack +0 -0
- data/test/repositories/bzr_with_branch/goodbyeworld.c +0 -5
- data/test/repositories/bzr_with_branch/helloworld.c +0 -6
- data/test/repositories/bzr_with_nested_branches/.bzr/README +0 -3
- data/test/repositories/bzr_with_nested_branches/.bzr/branch-format +0 -1
- data/test/repositories/bzr_with_nested_branches/.bzr/branch/branch.conf +0 -1
- data/test/repositories/bzr_with_nested_branches/.bzr/branch/format +0 -1
- data/test/repositories/bzr_with_nested_branches/.bzr/branch/last-revision +0 -1
- data/test/repositories/bzr_with_nested_branches/.bzr/branch/tags +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/checkout/conflicts +0 -1
- data/test/repositories/bzr_with_nested_branches/.bzr/checkout/dirstate +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/checkout/format +0 -1
- data/test/repositories/bzr_with_nested_branches/.bzr/checkout/merge-hashes +0 -6
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/format +0 -1
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/0428489d1a03d05c496c2c429fe96e90.iix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/0428489d1a03d05c496c2c429fe96e90.rix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/0428489d1a03d05c496c2c429fe96e90.six +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/0428489d1a03d05c496c2c429fe96e90.tix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/30fcaac048e328a7727156986055f6e8.iix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/30fcaac048e328a7727156986055f6e8.rix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/30fcaac048e328a7727156986055f6e8.six +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/30fcaac048e328a7727156986055f6e8.tix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/673cc297ed321f667e1d8d4fff600829.iix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/673cc297ed321f667e1d8d4fff600829.rix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/673cc297ed321f667e1d8d4fff600829.six +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/673cc297ed321f667e1d8d4fff600829.tix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/71af8bae249bcb824a4ff17c62029142.iix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/71af8bae249bcb824a4ff17c62029142.rix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/71af8bae249bcb824a4ff17c62029142.six +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/71af8bae249bcb824a4ff17c62029142.tix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/7202eb77b81a80eca5296f317ed42149.iix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/7202eb77b81a80eca5296f317ed42149.rix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/7202eb77b81a80eca5296f317ed42149.six +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/7202eb77b81a80eca5296f317ed42149.tix +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/8a571ba35ee54cd133b71e967442fe17.iix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/8a571ba35ee54cd133b71e967442fe17.rix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/8a571ba35ee54cd133b71e967442fe17.six +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/8a571ba35ee54cd133b71e967442fe17.tix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/a06b9c10004fc3e05affee8cf0a9febd.iix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/a06b9c10004fc3e05affee8cf0a9febd.rix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/a06b9c10004fc3e05affee8cf0a9febd.six +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/a06b9c10004fc3e05affee8cf0a9febd.tix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/da6c79a024c70fd6831e323430a96cc8.iix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/da6c79a024c70fd6831e323430a96cc8.rix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/da6c79a024c70fd6831e323430a96cc8.six +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/da6c79a024c70fd6831e323430a96cc8.tix +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/f35e1020b6a55c81b6d2fe4c7bcd4645.iix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/f35e1020b6a55c81b6d2fe4c7bcd4645.rix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/f35e1020b6a55c81b6d2fe4c7bcd4645.six +0 -5
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/indices/f35e1020b6a55c81b6d2fe4c7bcd4645.tix +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/pack-names +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/packs/0428489d1a03d05c496c2c429fe96e90.pack +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/packs/30fcaac048e328a7727156986055f6e8.pack +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/packs/673cc297ed321f667e1d8d4fff600829.pack +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/packs/71af8bae249bcb824a4ff17c62029142.pack +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/packs/7202eb77b81a80eca5296f317ed42149.pack +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/packs/8a571ba35ee54cd133b71e967442fe17.pack +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/packs/a06b9c10004fc3e05affee8cf0a9febd.pack +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/packs/da6c79a024c70fd6831e323430a96cc8.pack +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/packs/f35e1020b6a55c81b6d2fe4c7bcd4645.pack +0 -0
- data/test/repositories/bzr_with_nested_branches/.bzr/repository/upload/.gitignore +0 -1
- data/test/repositories/bzr_with_nested_branches/file1.txt +0 -2
- data/test/repositories/bzr_with_nested_branches/file3.txt +0 -1
- data/test/repositories/bzr_with_nested_branches/file4.txt +0 -1
- data/test/repositories/bzr_with_nested_branches/file5.txt +0 -4
- data/test/repositories/bzr_with_nested_branches/file6.txt +0 -2
- data/test/repositories/bzr_with_nested_branches/file7.txt +0 -2
- data/test/repositories/bzr_with_subdirectories/.bzr/README +0 -3
- data/test/repositories/bzr_with_subdirectories/.bzr/branch-format +0 -1
- data/test/repositories/bzr_with_subdirectories/.bzr/branch/branch.conf +0 -0
- data/test/repositories/bzr_with_subdirectories/.bzr/branch/format +0 -1
- data/test/repositories/bzr_with_subdirectories/.bzr/branch/last-revision +0 -1
- data/test/repositories/bzr_with_subdirectories/.bzr/branch/tags +0 -0
- data/test/repositories/bzr_with_subdirectories/.bzr/checkout/conflicts +0 -1
- data/test/repositories/bzr_with_subdirectories/.bzr/checkout/dirstate +0 -0
- data/test/repositories/bzr_with_subdirectories/.bzr/checkout/format +0 -1
- data/test/repositories/bzr_with_subdirectories/.bzr/repository/format +0 -1
- data/test/repositories/bzr_with_subdirectories/.bzr/repository/indices/6eb92b11d9f811881dd08e0ca71e136d.iix +0 -0
- data/test/repositories/bzr_with_subdirectories/.bzr/repository/indices/6eb92b11d9f811881dd08e0ca71e136d.rix +0 -0
- data/test/repositories/bzr_with_subdirectories/.bzr/repository/indices/6eb92b11d9f811881dd08e0ca71e136d.six +0 -5
- data/test/repositories/bzr_with_subdirectories/.bzr/repository/indices/6eb92b11d9f811881dd08e0ca71e136d.tix +0 -0
- data/test/repositories/bzr_with_subdirectories/.bzr/repository/pack-names +0 -0
- data/test/repositories/bzr_with_subdirectories/.bzr/repository/packs/6eb92b11d9f811881dd08e0ca71e136d.pack +0 -0
- data/test/repositories/bzr_with_subdirectories/foo/helloworld.c +0 -0
- data/test/repositories/deep_svn/README.txt +0 -5
- data/test/repositories/deep_svn/conf/authz +0 -21
- data/test/repositories/deep_svn/conf/passwd +0 -8
- data/test/repositories/deep_svn/conf/svnserve.conf +0 -30
- data/test/repositories/deep_svn/db/current +0 -1
- data/test/repositories/deep_svn/db/format +0 -1
- data/test/repositories/deep_svn/db/fs-type +0 -1
- data/test/repositories/deep_svn/db/revprops/0 +0 -5
- data/test/repositories/deep_svn/db/revprops/1 +0 -14
- data/test/repositories/deep_svn/db/revprops/2 +0 -14
- data/test/repositories/deep_svn/db/revprops/3 +0 -14
- data/test/repositories/deep_svn/db/revprops/4 +0 -14
- data/test/repositories/deep_svn/db/revs/0 +0 -11
- data/test/repositories/deep_svn/db/revs/1 +0 -122
- data/test/repositories/deep_svn/db/revs/2 +0 -19
- data/test/repositories/deep_svn/db/revs/3 +0 -44
- data/test/repositories/deep_svn/db/revs/4 +0 -48
- data/test/repositories/deep_svn/db/uuid +0 -1
- data/test/repositories/deep_svn/db/write-lock +0 -0
- data/test/repositories/deep_svn/format +0 -1
- data/test/repositories/deep_svn/hooks/post-commit.tmpl +0 -51
- data/test/repositories/deep_svn/hooks/post-lock.tmpl +0 -44
- data/test/repositories/deep_svn/hooks/post-revprop-change.tmpl +0 -56
- data/test/repositories/deep_svn/hooks/post-unlock.tmpl +0 -42
- data/test/repositories/deep_svn/hooks/pre-commit.tmpl +0 -70
- data/test/repositories/deep_svn/hooks/pre-lock.tmpl +0 -64
- data/test/repositories/deep_svn/hooks/pre-revprop-change.tmpl +0 -66
- data/test/repositories/deep_svn/hooks/pre-unlock.tmpl +0 -60
- data/test/repositories/deep_svn/hooks/start-commit.tmpl +0 -54
- data/test/repositories/deep_svn/locks/db-logs.lock +0 -3
- data/test/repositories/deep_svn/locks/db.lock +0 -3
- data/test/repositories/git_with_empty_merge.tgz +0 -0
- data/test/repositories/svn/README.txt +0 -5
- data/test/repositories/svn/conf/authz +0 -21
- data/test/repositories/svn/conf/passwd +0 -8
- data/test/repositories/svn/conf/svnserve.conf +0 -30
- data/test/repositories/svn/db/current +0 -1
- data/test/repositories/svn/db/format +0 -1
- data/test/repositories/svn/db/fs-type +0 -1
- data/test/repositories/svn/db/revprops/0 +0 -5
- data/test/repositories/svn/db/revprops/1 +0 -14
- data/test/repositories/svn/db/revprops/2 +0 -13
- data/test/repositories/svn/db/revprops/3 +0 -13
- data/test/repositories/svn/db/revprops/4 +0 -13
- data/test/repositories/svn/db/revprops/5 +0 -13
- data/test/repositories/svn/db/revprops/6 +0 -12
- data/test/repositories/svn/db/revs/0 +0 -11
- data/test/repositories/svn/db/revs/1 +0 -0
- data/test/repositories/svn/db/revs/2 +0 -0
- data/test/repositories/svn/db/revs/3 +0 -0
- data/test/repositories/svn/db/revs/4 +0 -0
- data/test/repositories/svn/db/revs/5 +0 -64
- data/test/repositories/svn/db/revs/6 +0 -50
- data/test/repositories/svn/db/uuid +0 -1
- data/test/repositories/svn/db/write-lock +0 -0
- data/test/repositories/svn/format +0 -1
- data/test/repositories/svn/hooks/post-commit.tmpl +0 -51
- data/test/repositories/svn/hooks/post-lock.tmpl +0 -44
- data/test/repositories/svn/hooks/post-revprop-change.tmpl +0 -56
- data/test/repositories/svn/hooks/post-unlock.tmpl +0 -42
- data/test/repositories/svn/hooks/pre-commit.tmpl +0 -70
- data/test/repositories/svn/hooks/pre-lock.tmpl +0 -64
- data/test/repositories/svn/hooks/pre-revprop-change +0 -67
- data/test/repositories/svn/hooks/pre-unlock.tmpl +0 -60
- data/test/repositories/svn/hooks/start-commit.tmpl +0 -54
- data/test/repositories/svn/locks/db-logs.lock +0 -3
- data/test/repositories/svn/locks/db.lock +0 -3
- data/test/repositories/svn_empty/README.txt +0 -5
- data/test/repositories/svn_empty/conf/authz +0 -32
- data/test/repositories/svn_empty/conf/hooks-env.tmpl +0 -19
- data/test/repositories/svn_empty/conf/passwd +0 -8
- data/test/repositories/svn_empty/conf/svnserve.conf +0 -76
- data/test/repositories/svn_empty/db/current +0 -1
- data/test/repositories/svn_empty/db/format +0 -2
- data/test/repositories/svn_empty/db/fs-type +0 -1
- data/test/repositories/svn_empty/db/fsfs.conf +0 -125
- data/test/repositories/svn_empty/db/min-unpacked-rev +0 -1
- data/test/repositories/svn_empty/db/revprops/0/0 +0 -5
- data/test/repositories/svn_empty/db/revs/0/0 +0 -11
- data/test/repositories/svn_empty/db/txn-current +0 -1
- data/test/repositories/svn_empty/db/txn-current-lock +0 -0
- data/test/repositories/svn_empty/db/uuid +0 -1
- data/test/repositories/svn_empty/db/write-lock +0 -0
- data/test/repositories/svn_empty/format +0 -1
- data/test/repositories/svn_empty/hooks/post-commit.tmpl +0 -52
- data/test/repositories/svn_empty/hooks/post-lock.tmpl +0 -45
- data/test/repositories/svn_empty/hooks/post-revprop-change.tmpl +0 -57
- data/test/repositories/svn_empty/hooks/post-unlock.tmpl +0 -43
- data/test/repositories/svn_empty/hooks/pre-commit.tmpl +0 -85
- data/test/repositories/svn_empty/hooks/pre-lock.tmpl +0 -73
- data/test/repositories/svn_empty/hooks/pre-revprop-change.tmpl +0 -66
- data/test/repositories/svn_empty/hooks/pre-unlock.tmpl +0 -65
- data/test/repositories/svn_empty/hooks/start-commit.tmpl +0 -74
- data/test/repositories/svn_empty/locks/db-logs.lock +0 -3
- data/test/repositories/svn_empty/locks/db.lock +0 -3
- data/test/repositories/svn_with_branching.tgz +0 -0
- data/test/repositories/svn_with_invalid_encoding.tgz +0 -0
- data/test/repositories/svn_with_tree_move/README.txt +0 -5
- data/test/repositories/svn_with_tree_move/conf/authz +0 -21
- data/test/repositories/svn_with_tree_move/conf/passwd +0 -8
- data/test/repositories/svn_with_tree_move/conf/svnserve.conf +0 -30
- data/test/repositories/svn_with_tree_move/db/current +0 -1
- data/test/repositories/svn_with_tree_move/db/format +0 -1
- data/test/repositories/svn_with_tree_move/db/fs-type +0 -1
- data/test/repositories/svn_with_tree_move/db/revprops/0 +0 -5
- data/test/repositories/svn_with_tree_move/db/revprops/1 +0 -13
- data/test/repositories/svn_with_tree_move/db/revprops/2 +0 -13
- data/test/repositories/svn_with_tree_move/db/revs/0 +0 -11
- data/test/repositories/svn_with_tree_move/db/revs/1 +0 -0
- data/test/repositories/svn_with_tree_move/db/revs/2 +0 -44
- data/test/repositories/svn_with_tree_move/db/uuid +0 -1
- data/test/repositories/svn_with_tree_move/db/write-lock +0 -0
- data/test/repositories/svn_with_tree_move/format +0 -1
- data/test/repositories/svn_with_tree_move/hooks/post-commit.tmpl +0 -51
- data/test/repositories/svn_with_tree_move/hooks/post-lock.tmpl +0 -44
- data/test/repositories/svn_with_tree_move/hooks/post-revprop-change.tmpl +0 -56
- data/test/repositories/svn_with_tree_move/hooks/post-unlock.tmpl +0 -42
- data/test/repositories/svn_with_tree_move/hooks/pre-commit.tmpl +0 -70
- data/test/repositories/svn_with_tree_move/hooks/pre-lock.tmpl +0 -64
- data/test/repositories/svn_with_tree_move/hooks/pre-revprop-change.tmpl +0 -66
- data/test/repositories/svn_with_tree_move/hooks/pre-unlock.tmpl +0 -60
- data/test/repositories/svn_with_tree_move/hooks/start-commit.tmpl +0 -54
- data/test/repositories/svn_with_tree_move/locks/db-logs.lock +0 -3
- data/test/repositories/svn_with_tree_move/locks/db.lock +0 -3
- data/test/test_helper.rb +0 -127
- data/test/unit/abstract_adapter_test.rb +0 -106
- data/test/unit/adapter_factory_test.rb +0 -67
- data/test/unit/array_writer_test.rb +0 -33
- data/test/unit/bzr_cat_file_test.rb +0 -56
- data/test/unit/bzr_commits_test.rb +0 -388
- data/test/unit/bzr_head_test.rb +0 -18
- data/test/unit/bzr_misc_test.rb +0 -62
- data/test/unit/bzr_parser_test.rb +0 -483
- data/test/unit/bzr_pull_test.rb +0 -31
- data/test/unit/bzr_push_test.rb +0 -61
- data/test/unit/bzr_validation_test.rb +0 -61
- data/test/unit/bzr_xml_parser_test.rb +0 -409
- data/test/unit/bzrlib_cat_file_test.rb +0 -56
- data/test/unit/bzrlib_head_test.rb +0 -18
- data/test/unit/cvs_branch_number_test.rb +0 -130
- data/test/unit/cvs_commits_test.rb +0 -52
- data/test/unit/cvs_convert_test.rb +0 -30
- data/test/unit/cvs_misc_test.rb +0 -82
- data/test/unit/cvs_parser_test.rb +0 -94
- data/test/unit/cvs_validation_test.rb +0 -148
- data/test/unit/git_cat_file_test.rb +0 -21
- data/test/unit/git_commit_all_test.rb +0 -34
- data/test/unit/git_commits_test.rb +0 -179
- data/test/unit/git_head_test.rb +0 -26
- data/test/unit/git_log_parser_test.rb +0 -221
- data/test/unit/git_misc_test.rb +0 -100
- data/test/unit/git_parser_test.rb +0 -59
- data/test/unit/git_patch_test.rb +0 -14
- data/test/unit/git_pull_test.rb +0 -50
- data/test/unit/git_push_test.rb +0 -46
- data/test/unit/git_rev_list_test.rb +0 -89
- data/test/unit/git_styled_parser_test.rb +0 -103
- data/test/unit/git_svn_cat_file_test.rb +0 -57
- data/test/unit/git_svn_commits_test.rb +0 -37
- data/test/unit/git_svn_pull_test.rb +0 -51
- data/test/unit/git_token_test.rb +0 -45
- data/test/unit/git_validation_test.rb +0 -93
- data/test/unit/hg_cat_file_test.rb +0 -47
- data/test/unit/hg_commits_test.rb +0 -220
- data/test/unit/hg_head_test.rb +0 -24
- data/test/unit/hg_misc_test.rb +0 -48
- data/test/unit/hg_parser_test.rb +0 -184
- data/test/unit/hg_patch_test.rb +0 -14
- data/test/unit/hg_pull_test.rb +0 -29
- data/test/unit/hg_push_test.rb +0 -59
- data/test/unit/hg_rev_list_test.rb +0 -63
- data/test/unit/hg_validation_test.rb +0 -60
- data/test/unit/hglib_cat_file_test.rb +0 -47
- data/test/unit/hglib_head_test.rb +0 -18
- data/test/unit/ohlog_command_line_test.rb +0 -36
- data/test/unit/shellout_test.rb +0 -26
- data/test/unit/string_encoder_command_line_test.rb +0 -27
- data/test/unit/svn_cat_file_test.rb +0 -22
- data/test/unit/svn_chain_cat_file_test.rb +0 -24
- data/test/unit/svn_chain_commits_test.rb +0 -176
- data/test/unit/svn_chain_test.rb +0 -77
- data/test/unit/svn_commits_test.rb +0 -275
- data/test/unit/svn_convert_test.rb +0 -28
- data/test/unit/svn_head_test.rb +0 -27
- data/test/unit/svn_misc_test.rb +0 -142
- data/test/unit/svn_parser_test.rb +0 -155
- data/test/unit/svn_patch_test.rb +0 -14
- data/test/unit/svn_pull_test.rb +0 -60
- data/test/unit/svn_push_test.rb +0 -40
- data/test/unit/svn_validation_test.rb +0 -176
- data/test/unit/svn_xml_parser_test.rb +0 -45
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
describe 'Bzr::Scm' do
|
6
|
+
it 'must pull the repository correctly' do
|
7
|
+
with_bzr_repository('bzr') do |src|
|
8
|
+
tmpdir do |dest_dir|
|
9
|
+
core = OhlohScm::Factory.get_core(scm_type: :bzr, url: dest_dir)
|
10
|
+
refute core.status.exist?
|
11
|
+
|
12
|
+
core.scm.pull(src.scm, TestCallback.new)
|
13
|
+
assert core.status.exist?
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
describe 'Bzr::Validation' do
|
6
|
+
describe 'validate_server_connection' do
|
7
|
+
it 'must handle non existent remote source' do
|
8
|
+
core = OhlohScm::Factory.get_core(scm_type: :bzr, url: 'lp:foobar')
|
9
|
+
core.validate
|
10
|
+
core.errors.wont_be :empty?
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
describe 'validate url' do
|
15
|
+
it 'must have errors for invalid urls' do
|
16
|
+
assert_url_error(:bzr, nil, '', 'foo', 'http:/', 'http:://', 'http://', 'http://a')
|
17
|
+
assert_url_error(:bzr, 'http://www.selenic.com/repo/hello%20world') # no encoded strings allowed
|
18
|
+
assert_url_error(:bzr, 'http://www.selenic.com/repo/hello world') # no spaces allowed
|
19
|
+
assert_url_error(:bzr, 'git://www.selenic.com/repo/hello') # git protocol not allowed
|
20
|
+
assert_url_error(:bzr, 'svn://www.selenic.com/repo/hello') # svn protocol not allowed
|
21
|
+
assert_url_error(:bzr, 'lp://foobar') # lp requires no '//' after colon
|
22
|
+
assert_url_error(:bzr, 'file:///home/test/bzr')
|
23
|
+
assert_url_error(:bzr, '/home/test/bzr')
|
24
|
+
assert_url_error(:bzr, 'bzr+ssh://test@localhost/home/test/bzr')
|
25
|
+
assert_url_error(:bzr, 'bzr+ssh://localhost/home/test/bzr')
|
26
|
+
end
|
27
|
+
|
28
|
+
it 'wont have errors for valid urls' do
|
29
|
+
assert_url_valid(:bzr, 'http://www.selenic.com/repo/hello')
|
30
|
+
assert_url_valid(:bzr, 'http://www.selenic.com:80/repo/hello')
|
31
|
+
assert_url_valid(:bzr, 'https://www.selenic.com/repo/hello')
|
32
|
+
assert_url_valid(:bzr, 'bzr://www.selenic.com/repo/hello')
|
33
|
+
assert_url_valid(:bzr, 'lp:foobar')
|
34
|
+
assert_url_valid(:bzr, 'lp:~foobar/bar')
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,93 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
describe 'Cvs::Activity' do
|
6
|
+
it 'must return the host' do
|
7
|
+
activity = get_core(:cvs, url: ':ext:anonymous:@moodle.cvs.sourceforge.net:/cvsroot/moodle',
|
8
|
+
branch_name: 'contrib').activity
|
9
|
+
activity.send(:host).must_equal 'moodle.cvs.sourceforge.net'
|
10
|
+
end
|
11
|
+
|
12
|
+
it 'must return the protocol' do
|
13
|
+
activity = get_core(:cvs, url: ':pserver:foo:@foo.com:/cvsroot/a', branch_name: 'b').activity
|
14
|
+
activity.send(:protocol).must_equal :pserver
|
15
|
+
|
16
|
+
activity = get_core(:cvs, url: ':ext:foo:@foo.com:/cvsroot/a', branch_name: 'b').activity
|
17
|
+
activity.send(:protocol).must_equal :ext
|
18
|
+
|
19
|
+
activity = get_core(:cvs, url: ':pserver:ext:@foo.com:/cvsroot/a', branch_name: 'b').activity
|
20
|
+
activity.send(:protocol).must_equal :pserver
|
21
|
+
end
|
22
|
+
|
23
|
+
it 'must test tags' do
|
24
|
+
with_cvs_repository('cvs', 'simple') do |cvs|
|
25
|
+
cvs.activity.tags.must_equal [['simple_release_tag', '1.1.1.1'], ['simple_vendor_tag', '1.1.1']]
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
it 'must test export_tag' do
|
30
|
+
with_cvs_repository('cvs', 'simple') do |cvs|
|
31
|
+
Dir.mktmpdir('oh_scm_tag_') do |dir|
|
32
|
+
cvs.activity.export_tag(dir, 'simple_release_tag')
|
33
|
+
Dir.entries(dir).sort.must_equal ['.', '..', 'foo.rb']
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
it 'must test commits' do
|
39
|
+
with_cvs_repository('cvs', 'simple') do |cvs|
|
40
|
+
cvs.activity.commits.collect(&:token).must_equal ['2006-06-29 16:21:07',
|
41
|
+
'2006-06-29 18:14:47',
|
42
|
+
'2006-06-29 18:45:29',
|
43
|
+
'2006-06-29 18:48:54',
|
44
|
+
'2006-06-29 18:52:23']
|
45
|
+
|
46
|
+
# Make sure we are date format agnostic (2008/01/01 is the same as 2008-01-01)
|
47
|
+
cvs.activity.commits(after: '2006/06/29 18:45:29').collect(&:token)
|
48
|
+
.must_equal ['2006-06-29 18:48:54',
|
49
|
+
'2006-06-29 18:52:23']
|
50
|
+
|
51
|
+
cvs.activity.commits(after: '2006-06-29 18:45:29')
|
52
|
+
.collect(&:token).must_equal ['2006-06-29 18:48:54',
|
53
|
+
'2006-06-29 18:52:23']
|
54
|
+
|
55
|
+
cvs.activity.commits(after: '2006/06/29 18:52:23').collect(&:token).must_be_empty
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
it 'must correctly convert commits to git' do
|
60
|
+
with_cvs_repository('cvs', 'simple') do |cvs|
|
61
|
+
tmpdir do |tmp_dir|
|
62
|
+
git_core = OhlohScm::Factory.get_core(url: tmp_dir)
|
63
|
+
git_core.scm.pull(cvs.scm, TestCallback.new)
|
64
|
+
utc_dates = ['2006-06-29 16:21:07 UTC', '2006-06-29 18:14:47 UTC',
|
65
|
+
'2006-06-29 18:45:29 UTC', '2006-06-29 18:48:54 UTC',
|
66
|
+
'2006-06-29 18:52:23 UTC']
|
67
|
+
git_core.activity.commits.map(&:author_date).map(&:to_s).must_equal utc_dates
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
it 'must test commits sets scm' do
|
73
|
+
with_cvs_repository('cvs', 'simple') do |cvs|
|
74
|
+
cvs.activity.commits.each do |c|
|
75
|
+
cvs.activity.scm.must_equal c.scm
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
it 'must test open log file encoding' do
|
81
|
+
with_cvs_repository('cvs', 'invalid_utf8') do |cvs|
|
82
|
+
cvs.activity.send(:open_log_file) do |io|
|
83
|
+
io.read.valid_encoding?.must_equal true
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
it 'commits must work with invalid_encoding' do
|
89
|
+
with_cvs_repository('cvs', 'invalid_utf8') do |cvs|
|
90
|
+
cvs.activity.commits
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
@@ -0,0 +1,112 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'Cvs::Scm' do
|
4
|
+
it 'must test symlink fixup' do
|
5
|
+
scm = get_core(:cvs, url: ':pserver:anoncvs:@cvs.netbeans.org:/cvs').scm
|
6
|
+
scm.normalize
|
7
|
+
scm.url.must_equal ':pserver:anoncvs:@cvs.netbeans.org:/shared/data/ccvs/repository'
|
8
|
+
|
9
|
+
scm = get_core(:cvs, url: ':pserver:anoncvs:@cvs.dev.java.net:/cvs').scm
|
10
|
+
scm.normalize
|
11
|
+
scm.url.must_equal ':pserver:anoncvs:@cvs.dev.java.net:/shared/data/ccvs/repository'
|
12
|
+
|
13
|
+
scm = get_core(:cvs, url: ':PSERVER:ANONCVS:@CVS.DEV.JAVA.NET:/cvs').scm
|
14
|
+
scm.normalize
|
15
|
+
scm.url.must_equal ':PSERVER:ANONCVS:@CVS.DEV.JAVA.NET:/shared/data/ccvs/repository'
|
16
|
+
|
17
|
+
scm = get_core(:cvs, url: ':pserver:anonymous:@cvs.gna.org:/cvs/eagleusb').scm
|
18
|
+
scm.normalize
|
19
|
+
scm.url.must_equal ':pserver:anonymous:@cvs.gna.org:/var/cvs/eagleusb'
|
20
|
+
end
|
21
|
+
|
22
|
+
it 'must test sync_pserver_username_password' do
|
23
|
+
# Pull username only from url
|
24
|
+
scm = get_core(:cvs, url: ':pserver:guest:@ohloh.net:/test').scm
|
25
|
+
scm.normalize
|
26
|
+
scm.url.must_equal ':pserver:guest:@ohloh.net:/test'
|
27
|
+
scm.username.must_equal 'guest'
|
28
|
+
scm.password.must_equal ''
|
29
|
+
|
30
|
+
# Pull username and password from url
|
31
|
+
scm = get_core(:cvs, url: ':pserver:guest:secret@ohloh.net:/test').scm
|
32
|
+
scm.normalize
|
33
|
+
|
34
|
+
scm.url.must_equal ':pserver:guest:secret@ohloh.net:/test'
|
35
|
+
scm.username.must_equal 'guest'
|
36
|
+
scm.password.must_equal 'secret'
|
37
|
+
|
38
|
+
# Apply username and password to url
|
39
|
+
scm = get_core(:cvs, url: ':pserver::@ohloh.net:/test', username: 'guest', password: 'secret').scm
|
40
|
+
scm.normalize
|
41
|
+
scm.url.must_equal ':pserver:guest:secret@ohloh.net:/test'
|
42
|
+
scm.username.must_equal 'guest'
|
43
|
+
scm.password.must_equal 'secret'
|
44
|
+
|
45
|
+
# Passwords disagree, use :password attribute
|
46
|
+
scm = get_core(:cvs, url: ':pserver:guest:old@ohloh.net:/test', username: 'guest', password: 'new').scm
|
47
|
+
scm.normalize
|
48
|
+
scm.url.must_equal ':pserver:guest:new@ohloh.net:/test'
|
49
|
+
scm.username.must_equal 'guest'
|
50
|
+
scm.password.must_equal 'new'
|
51
|
+
end
|
52
|
+
|
53
|
+
it 'must test guess_forge' do
|
54
|
+
scm = get_core(:cvs, url: nil).scm
|
55
|
+
scm.send(:guess_forge).must_be_nil
|
56
|
+
|
57
|
+
scm = get_core(:cvs, url: 'garbage_in_garbage_out').scm
|
58
|
+
scm.send(:guess_forge).must_be_nil
|
59
|
+
|
60
|
+
scm = get_core(:cvs, url: ':pserver:anonymous:@boost.cvs.sourceforge.net:/cvsroot/boost').scm
|
61
|
+
scm.send(:guess_forge).must_equal 'sourceforge.net'
|
62
|
+
|
63
|
+
scm = get_core(:cvs, url: ':pserver:guest:@cvs.dev.java.net:/cvs').scm
|
64
|
+
scm.send(:guess_forge).must_equal 'java.net'
|
65
|
+
|
66
|
+
scm = get_core(:cvs, url: ':PSERVER:ANONCVS:@CVS.DEV.JAVA.NET:/cvs').scm
|
67
|
+
scm.send(:guess_forge).must_equal 'java.net'
|
68
|
+
|
69
|
+
scm = get_core(:cvs, url: ':pserver:guest:@colorchooser.dev.java.net:/cvs').scm
|
70
|
+
scm.send(:guess_forge).must_equal 'java.net'
|
71
|
+
end
|
72
|
+
|
73
|
+
it 'must test local directory trim' do
|
74
|
+
scm = get_core(:cvs, url: '/Users/robin/cvs_repo/', branch_name: 'simple').scm
|
75
|
+
scm.send(:trim_directory, '/Users/robin/cvs_repo/simple/foo.rb').must_equal '/Users/robin/cvs_repo/simple/foo.rb'
|
76
|
+
end
|
77
|
+
|
78
|
+
it 'must test remote directory trim' do
|
79
|
+
scm = get_core(:cvs, url: ':pserver:anonymous:@moodle.cvs.sourceforge.net:/cvsroot/moodle',
|
80
|
+
branch_name: 'contrib').scm
|
81
|
+
scm.send(:trim_directory, '/cvsroot/moodle/contrib/foo.rb').must_equal 'foo.rb'
|
82
|
+
end
|
83
|
+
|
84
|
+
it 'must test remote directory trim with port number' do
|
85
|
+
scm = get_core(:cvs, url: ':pserver:anoncvs:anoncvs@libvirt.org:2401/data/cvs', branch_name: 'libvirt').scm
|
86
|
+
scm.send(:trim_directory, '/data/cvs/libvirt/docs/html/Attic').must_equal 'docs/html/Attic'
|
87
|
+
end
|
88
|
+
|
89
|
+
it 'must test ordered directory list' do
|
90
|
+
scm = get_core(:cvs, url: ':pserver:anonymous:@moodle.cvs.sourceforge.net:/cvsroot/moodle',
|
91
|
+
branch_name: 'contrib').scm
|
92
|
+
|
93
|
+
list = scm.send(:build_ordered_directory_list, ['/cvsroot/moodle/contrib/foo/bar'.intern,
|
94
|
+
'/cvsroot/moodle/contrib'.intern,
|
95
|
+
'/cvsroot/moodle/contrib/hello'.intern,
|
96
|
+
'/cvsroot/moodle/contrib/hello'.intern])
|
97
|
+
list.size.must_equal 4
|
98
|
+
list.must_equal ['', 'foo', 'hello', 'foo/bar']
|
99
|
+
end
|
100
|
+
|
101
|
+
it 'must test ordered directory list ignores Attic' do
|
102
|
+
scm = get_core(:cvs, url: ':pserver:anonymous:@moodle.cvs.sourceforge.net:/cvsroot/moodle',
|
103
|
+
branch_name: 'contrib').scm
|
104
|
+
|
105
|
+
list = scm.send(:build_ordered_directory_list, ['/cvsroot/moodle/contrib/foo/bar'.intern,
|
106
|
+
'/cvsroot/moodle/contrib/Attic'.intern,
|
107
|
+
'/cvsroot/moodle/contrib/hello/Attic'.intern])
|
108
|
+
|
109
|
+
list.size.must_equal 4
|
110
|
+
list.must_equal ['', 'foo', 'hello', 'foo/bar']
|
111
|
+
end
|
112
|
+
end
|
@@ -0,0 +1,78 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'Cvs::Validation' do
|
4
|
+
describe 'validate_server_connection' do
|
5
|
+
it 'must handle non existent remote source' do
|
6
|
+
url = ':pserver:anonymous:@foobar.xyz_example.org:/cvsroot'
|
7
|
+
core = OhlohScm::Factory.get_core(scm_type: :cvs, url: url, branch_name: 'foo')
|
8
|
+
core.validate
|
9
|
+
core.errors.wont_be :empty?
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
it 'must have errors for invalid branch_name' do
|
14
|
+
get_core(:cvs, branch_name: 'x' * 81).validation.send(:branch_name_errors).must_be_nil
|
15
|
+
get_core(:cvs, branch_name: 'x' * 121).validation.send(:branch_name_errors).wont_be :empty?
|
16
|
+
get_core(:cvs, branch_name: 'foo@bar').validation.send(:branch_name_errors).wont_be :empty?
|
17
|
+
end
|
18
|
+
|
19
|
+
it 'must test rejected urls' do
|
20
|
+
assert_url_error(:cvs, nil, '', 'foo', 'http:/', 'http:://', 'http://', 'http://a')
|
21
|
+
assert_url_error(:cvs, ':pserver') # that's not enough
|
22
|
+
assert_url_error(:cvs, ':pserver:anonymous') # still not enough
|
23
|
+
assert_url_error(:cvs, ':pserver:anonymous:@ipodder.cvs.sourceforge.net') # missing the path
|
24
|
+
assert_url_error(:cvs, ':pserver:anonymous:::@ipodder.cvs.sourceforge.net:/cvsroot/ipodder') # too many colons
|
25
|
+
assert_url_error(:cvs, ':pserver@ipodder.cvs.sourceforge.net:/cvsroot/ipodder') # not enough colons
|
26
|
+
# hostname and path not separated by colon
|
27
|
+
assert_url_error(:cvs, ':pserver:anonymous:@ipodder.cvs.sourceforge.net/cvsroot/ipodder')
|
28
|
+
assert_url_error(:cvs, ':pserver:anonymous:@ipodder.cvs.source/forge.net:/cvsroot/ipodder') # slash in hostname
|
29
|
+
assert_url_error(:cvs, ':pserver:anonymous:ipodder.cvs.sourceforge.net:/cvsroot/ipodder') # missing @
|
30
|
+
# path does not begin at root
|
31
|
+
assert_url_error(:cvs, ':pserver:anonymous:@ipodder.cvs.sourceforge.net:cvsroot/ipodder')
|
32
|
+
# no encoded chars allowed
|
33
|
+
assert_url_error(:cvs, ':pserver:anonymous:@ipodder.cvs.sourceforge.net:/cvsr%23oot/ipodder')
|
34
|
+
assert_url_error(:cvs, ':pserver:anonymous:@ipodder.cvs.sourceforge.net:/cvsroot/ipodder;asdf') # no ; in url
|
35
|
+
# spaces not allowed
|
36
|
+
assert_url_error(:cvs, ':pserver:anonymous:@ipodder.cvs.sourceforge.net:/cvsroot/ipodder malicious code')
|
37
|
+
assert_url_error(:cvs, 'sourceforge.net/svn/project/trunk') # missing a protocol prefix
|
38
|
+
assert_url_error(:cvs, 'file:///home/robin/cvs') # file protocol is not allowed
|
39
|
+
assert_url_error(:cvs, 'http://svn.sourceforge.net') # http protocol is not allowed
|
40
|
+
assert_url_error(:cvs, 'git://kernel.org/whatever/linux.git') # git protocol is not allowed
|
41
|
+
assert_url_error(:cvs, 'ext@kernel.org/whatever/linux.git')
|
42
|
+
end
|
43
|
+
|
44
|
+
it 'must test accepted urls' do
|
45
|
+
assert_url_valid(:cvs, ':pserver:anonymous:@ipodder.cvs.sourceforge.net:/cvsroot/ipodder')
|
46
|
+
assert_url_valid(:cvs, ':pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot')
|
47
|
+
assert_url_valid(:cvs, ':pserver:anonymous:@cvs-mirror.mozilla.org:/cvsroot')
|
48
|
+
assert_url_valid(:cvs, ':pserver:guest:@cvs.dev.java.net:/shared/data/ccvs/repository')
|
49
|
+
assert_url_valid(:cvs, ':pserver:anoncvs:password@anoncvs.postgresql.org:/projects/cvsroot')
|
50
|
+
assert_url_valid(:cvs, ':pserver:anonymous:@rubyeclipse.cvs.sourceforge.net:/cvsroot/rubyeclipse')
|
51
|
+
assert_url_valid(:cvs, ':pserver:cvs:cvs@cvs.winehq.org:/home/wine')
|
52
|
+
assert_url_valid(:cvs, ':pserver:tcpdump:anoncvs@cvs.tcpdump.org:/tcpdump/master')
|
53
|
+
assert_url_valid(:cvs, ':pserver:anonymous:@user-mode-linux.cvs.sourceforge.net:/cvsroot/user-mode-linux')
|
54
|
+
assert_url_valid(:cvs, ':pserver:anonymous:@sc2.cvs.sourceforge.net:/cvsroot/sc2')
|
55
|
+
# Hyphen should be OK in username
|
56
|
+
assert_url_valid(:cvs, ':pserver:cool-dev:@sc2.cvs.sourceforge.net:/cvsroot/sc2')
|
57
|
+
# Underscores should be ok in path
|
58
|
+
assert_url_valid(:cvs, ':pserver:cvs_anon:@cvs.scms.waikato.ac.nz:/usr/local/global-cvs/ml_cvs')
|
59
|
+
# Pluses should be OK
|
60
|
+
assert_url_valid(:cvs, ':pserver:anonymous:freefem++@idared.ann.jussieu.fr:/Users/pubcvs/cvs')
|
61
|
+
assert_url_valid(:cvs, ':ext:anoncvs@opensource.conformal.com:/anoncvs/scrotwm')
|
62
|
+
end
|
63
|
+
|
64
|
+
it 'must test rejected branch_names' do
|
65
|
+
assert_branch_name_error(:cvs, nil, '', '%', ';', '&', "\n", "\t")
|
66
|
+
end
|
67
|
+
|
68
|
+
it 'must test accepted branch_names' do
|
69
|
+
assert_branch_name_valid(:cvs, 'myproject')
|
70
|
+
assert_branch_name_valid(:cvs, 'my/project')
|
71
|
+
assert_branch_name_valid(:cvs, 'my/project/2.0')
|
72
|
+
assert_branch_name_valid(:cvs, 'my_project')
|
73
|
+
assert_branch_name_valid(:cvs, '0')
|
74
|
+
assert_branch_name_valid(:cvs, 'My .Net Module')
|
75
|
+
assert_branch_name_valid(:cvs, 'my-module')
|
76
|
+
assert_branch_name_valid(:cvs, 'my-module++')
|
77
|
+
end
|
78
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
describe 'Factory' do
|
6
|
+
it 'must provide access to scm, activity and status functions' do
|
7
|
+
url = 'https://foobar.git'
|
8
|
+
core = OhlohScm::Factory.get_core(scm_type: :git, url: url)
|
9
|
+
|
10
|
+
core.status.scm.must_be_instance_of OhlohScm::Git::Scm
|
11
|
+
core.scm.url.must_equal url
|
12
|
+
assert core.activity.method(:commits)
|
13
|
+
assert core.status.method(:exist?)
|
14
|
+
assert core.validation.method(:validate)
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,402 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
describe 'Git::Activity' do
|
6
|
+
it 'must export contents of a repository' do
|
7
|
+
with_git_repository('git') do |git|
|
8
|
+
tmpdir do |dir|
|
9
|
+
git.activity.export(dir)
|
10
|
+
Dir.entries(dir).sort.must_equal ['.', '..', '.gitignore', 'COPYING', 'README',
|
11
|
+
'helloworld.c', 'makefile', 'ohloh_token']
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
it 'export must work the same for tag or commit_sha' do
|
17
|
+
with_git_repository('git') do |git|
|
18
|
+
tag_sha = 'f6e5a894ac4173f8f2a200f2c36df38a1e61121a'
|
19
|
+
commit_sha = `cd #{ git.scm.url } && git show #{ tag_sha }`.slice(/commit (.+)$/, 1)
|
20
|
+
|
21
|
+
Dir.mktmpdir('oh_scm_tag_') do |tag_dir|
|
22
|
+
git.activity.export(tag_dir, tag_sha)
|
23
|
+
|
24
|
+
Dir.mktmpdir('oh_scm_commit_') do |commit_dir|
|
25
|
+
git.activity.export(commit_dir, commit_sha)
|
26
|
+
`diff -rq #{ tag_dir } #{ commit_dir }`.must_be :empty?
|
27
|
+
Dir.entries(commit_dir).sort.must_equal ['.', '..', '.gitignore', 'helloworld.c',
|
28
|
+
'makefile', 'ohloh_token']
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
it 'must encode branch names correctly' do
|
35
|
+
with_git_repository('git_with_invalid_encoding') do |git|
|
36
|
+
assert git.activity.send(:branches).all?(&:valid_encoding?)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'tags' do
|
41
|
+
it 'scm test fixture must have dereferenced tags' do
|
42
|
+
with_git_repository('git') do |git|
|
43
|
+
tag_shas = `cd #{git.scm.url} && git tag --format='%(objectname)' | sed 's/refs\\/tags\\///'`.split(/\n/)
|
44
|
+
assert(tag_shas.any? { |sha| !git.activity.commit_tokens.include?(sha) })
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
it 'must return repository tags' do
|
49
|
+
with_git_repository('git') do |git|
|
50
|
+
git.activity.tags.must_equal(
|
51
|
+
[['v1.0.0', 'b6e9220c3cabe53a4ed7f32952aeaeb8a822603d', Time.parse('2016-07-31T07:58:30+05:30')],
|
52
|
+
['v1.1.0-lw', '2e9366dd7a786fdb35f211fff1c8ea05c51968b1', Time.parse('2006-06-11T11:34:17-07:00')],
|
53
|
+
['v2.1.0', '1df547800dcd168e589bb9b26b4039bff3a7f7e4', Time.parse('2006-07-14T16:07:15-07:00')]]
|
54
|
+
)
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
it 'must reference valid commits' do
|
59
|
+
with_git_repository('git') do |git|
|
60
|
+
tag_shas = git.activity.tags.map { |list| list[1] }
|
61
|
+
assert(tag_shas.all? { |sha| git.activity.commit_tokens.include?(sha) })
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
it 'must be empty for repository with no tags' do
|
66
|
+
with_git_repository('git_walk') do |git|
|
67
|
+
git.activity.tags.must_be :empty?
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
it 'must work for a tag named master' do
|
72
|
+
with_git_repository('git_with_master_tag') do |git|
|
73
|
+
git.activity.tags.must_equal [['master', '4e95717ac8cff8cdb10d83398d3ac667a2cca341',
|
74
|
+
Time.parse('2018-02-01T12:56:48+0530')]]
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
it 'must return correct head' do
|
80
|
+
with_git_repository('git') do |git|
|
81
|
+
assert git.status.exist?
|
82
|
+
git.activity.head_token.must_equal '1df547800dcd168e589bb9b26b4039bff3a7f7e4'
|
83
|
+
git.activity.head.token.must_equal '1df547800dcd168e589bb9b26b4039bff3a7f7e4'
|
84
|
+
assert git.activity.head.diffs.any?
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
it 'head_token must work with invalid encoding' do
|
89
|
+
with_git_repository('git_with_invalid_encoding') do |git|
|
90
|
+
git.activity.head_token
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
it 'commit_count' do
|
95
|
+
with_git_repository('git') do |git|
|
96
|
+
git.activity.commit_count.must_equal 4
|
97
|
+
git.activity.commit_count(after: 'b6e9220c3cabe53a4ed7f32952aeaeb8a822603d').must_equal 2
|
98
|
+
git.activity.commit_count(after: '1df547800dcd168e589bb9b26b4039bff3a7f7e4').must_equal 0
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
it 'commit_tokens' do
|
103
|
+
with_git_repository('git') do |git|
|
104
|
+
git.activity.commit_tokens.must_equal %w[089c527c61235bd0793c49109b5bd34d439848c6
|
105
|
+
b6e9220c3cabe53a4ed7f32952aeaeb8a822603d
|
106
|
+
2e9366dd7a786fdb35f211fff1c8ea05c51968b1
|
107
|
+
1df547800dcd168e589bb9b26b4039bff3a7f7e4]
|
108
|
+
|
109
|
+
git.activity.commit_tokens(after: '2e9366dd7a786fdb35f211fff1c8ea05c51968b1')
|
110
|
+
.must_equal ['1df547800dcd168e589bb9b26b4039bff3a7f7e4']
|
111
|
+
|
112
|
+
git.activity.commit_tokens(after: '1df547800dcd168e589bb9b26b4039bff3a7f7e4').must_be :empty?
|
113
|
+
end
|
114
|
+
end
|
115
|
+
|
116
|
+
it 'commits' do
|
117
|
+
with_git_repository('git') do |git|
|
118
|
+
git.activity.commits.collect(&:token).must_equal %w[089c527c61235bd0793c49109b5bd34d439848c6
|
119
|
+
b6e9220c3cabe53a4ed7f32952aeaeb8a822603d
|
120
|
+
2e9366dd7a786fdb35f211fff1c8ea05c51968b1
|
121
|
+
1df547800dcd168e589bb9b26b4039bff3a7f7e4]
|
122
|
+
|
123
|
+
git.activity.commits(after: '2e9366dd7a786fdb35f211fff1c8ea05c51968b1').collect(&:token)
|
124
|
+
.must_equal ['1df547800dcd168e589bb9b26b4039bff3a7f7e4']
|
125
|
+
|
126
|
+
git.activity.commits(after: '1df547800dcd168e589bb9b26b4039bff3a7f7e4').must_be :empty?
|
127
|
+
end
|
128
|
+
end
|
129
|
+
|
130
|
+
it 'commits for branch' do
|
131
|
+
with_git_repository('git', 'develop') do |git|
|
132
|
+
git.activity.commits.map(&:token).must_equal %w[089c527c61235bd0793c49109b5bd34d439848c6
|
133
|
+
b6e9220c3cabe53a4ed7f32952aeaeb8a822603d
|
134
|
+
2e9366dd7a786fdb35f211fff1c8ea05c51968b1
|
135
|
+
b4046b9a80fead62fa949232f2b87b0cb78fffcc]
|
136
|
+
|
137
|
+
git.activity.commits(after: '2e9366dd7a786fdb35f211fff1c8ea05c51968b1')
|
138
|
+
.map(&:token).must_equal ['b4046b9a80fead62fa949232f2b87b0cb78fffcc']
|
139
|
+
|
140
|
+
git.activity.commits(after: 'b4046b9a80fead62fa949232f2b87b0cb78fffcc').must_be :empty?
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
144
|
+
it 'wont track submodule commits and diffs' do
|
145
|
+
with_git_repository('git_with_submodules') do |git|
|
146
|
+
submodule_commits = %w[240375de181498b9a34d4bd328f2c87d2ade79f9
|
147
|
+
b6a80291e49dc540bb78526f9b1aab1123c9fb0e]
|
148
|
+
|
149
|
+
(git.activity.commit_tokens & submodule_commits).must_be :empty?
|
150
|
+
|
151
|
+
diffs = git.activity.commits.map(&:diffs).reject(&:empty?).flatten
|
152
|
+
diffs.map(&:path).must_equal ['A']
|
153
|
+
diffs.map(&:sha1).must_equal ['f70f10e4db19068f79bc43844b49f3eece45c4e8']
|
154
|
+
end
|
155
|
+
end
|
156
|
+
|
157
|
+
it 'commit_count for trunk commits' do
|
158
|
+
with_git_repository('git_dupe_delete') do |git|
|
159
|
+
git.activity.commit_count(trunk_only: false).must_equal 4
|
160
|
+
git.activity.commit_count(trunk_only: true).must_equal 3
|
161
|
+
end
|
162
|
+
end
|
163
|
+
|
164
|
+
it 'commit tokens for trunk commits' do
|
165
|
+
with_git_repository('git_dupe_delete') do |git|
|
166
|
+
git.activity.commit_tokens(trunk_only: false).must_equal ['a0a2b8623941562031a7d7f95d984feb4a2d719c',
|
167
|
+
'ad6bb43112706c462e53a9a8a8cd3b05f8e9260f',
|
168
|
+
'6126337d2497806528fd8657181d5d4afadd72a4', # On branch
|
169
|
+
'41c4b1044ebffc968d363e5f5e883134e624f846']
|
170
|
+
|
171
|
+
git.activity.commit_tokens(trunk_only: true).must_equal ['a0a2b8623941562031a7d7f95d984feb4a2d719c',
|
172
|
+
'ad6bb43112706c462e53a9a8a8cd3b05f8e9260f',
|
173
|
+
# '6126337d2497806528fd8657181d5d4afadd72a4' # On branch
|
174
|
+
'41c4b1044ebffc968d363e5f5e883134e624f846']
|
175
|
+
end
|
176
|
+
end
|
177
|
+
|
178
|
+
it 'commit tokens for trunk commits using after' do
|
179
|
+
with_git_repository('git_dupe_delete') do |git|
|
180
|
+
git.activity.commit_tokens(after: 'a0a2b8623941562031a7d7f95d984feb4a2d719c',
|
181
|
+
trunk_only: true).must_equal %w[ad6bb43112706c462e53a9a8a8cd3b05f8e9260f
|
182
|
+
41c4b1044ebffc968d363e5f5e883134e624f846]
|
183
|
+
|
184
|
+
# All trunk commit_tokens, with :after == HEAD
|
185
|
+
git.activity.commit_tokens(after: '41c4b1044ebffc968d363e5f5e883134e624f846',
|
186
|
+
trunk_only: true).must_be :empty?
|
187
|
+
end
|
188
|
+
end
|
189
|
+
|
190
|
+
it 'split renamed file diff into add and delete diffs' do
|
191
|
+
# `git mv foo bar` results in a single R diff. Split it into A & D diffs.
|
192
|
+
with_git_repository('git_with_mv') do |git|
|
193
|
+
r_commit = git.activity.commits[-2]
|
194
|
+
r_commit.message.strip.must_equal 'Ran: git mv foo bar'
|
195
|
+
r_commit.diffs.map(&:action).must_equal %w[D A]
|
196
|
+
r_commit.diffs.map(&:path).must_equal %w[foo bar]
|
197
|
+
|
198
|
+
r_commit = git.activity.commits.last
|
199
|
+
r_commit.message.strip.must_equal 'Ran: echo B >> bar; mv bar rab'
|
200
|
+
r_commit.diffs.map(&:action).must_equal %w[D A]
|
201
|
+
r_commit.diffs.map(&:path).must_equal %w[bar rab]
|
202
|
+
end
|
203
|
+
end
|
204
|
+
|
205
|
+
it 'trunk only commits' do
|
206
|
+
with_git_repository('git_dupe_delete') do |git|
|
207
|
+
git.activity.commits(trunk_only: true).collect(&:token).must_equal ['a0a2b8623941562031a7d7f95d984feb4a2d719c',
|
208
|
+
'ad6bb43112706c462e53a9a8a8cd3b05f8e9260f',
|
209
|
+
# on a branch, hence excluded.
|
210
|
+
# '6126337d2497806528fd8657181d5d4afadd72a4',
|
211
|
+
'41c4b1044ebffc968d363e5f5e883134e624f846']
|
212
|
+
end
|
213
|
+
end
|
214
|
+
|
215
|
+
# In rare cases, a merge commit's resulting tree is identical to its first parent's tree.
|
216
|
+
# I believe this is a result of developer trickery, and not a common situation.
|
217
|
+
#
|
218
|
+
# When this happens, `git whatchanged` will omit the changes relative to the first parent,
|
219
|
+
# and instead output only the changes relative to the second parent.
|
220
|
+
#
|
221
|
+
# Our commit parser became confused by this, assuming that these changes relative to the
|
222
|
+
# second parent were in fact the missing changes relative to the first.
|
223
|
+
#
|
224
|
+
# This is bug OTWO-623. This test confirms the fix.
|
225
|
+
it 'verbose commit with null merge' do
|
226
|
+
with_git_repository('git_with_null_merge') do |git|
|
227
|
+
c = git.activity.verbose_commit('d3bd0bedbf4b197b2c4eb827e1ec4c35b834482f')
|
228
|
+
# This commit's tree is identical to its parent's. Thus it should contain no diffs.
|
229
|
+
c.diffs.must_equal []
|
230
|
+
end
|
231
|
+
end
|
232
|
+
|
233
|
+
it 'each commit with null merge' do
|
234
|
+
with_git_repository('git_with_null_merge') do |git|
|
235
|
+
git.activity.each_commit do |c|
|
236
|
+
c.diffs.must_equal [] if c.token == 'd3bd0bedbf4b197b2c4eb827e1ec4c35b834482f'
|
237
|
+
end
|
238
|
+
end
|
239
|
+
end
|
240
|
+
|
241
|
+
it 'verbose_commit must have valid encoding' do
|
242
|
+
with_git_repository('git_with_invalid_encoding') do |git|
|
243
|
+
assert git.activity.verbose_commit('8d03f4ea64fcd10966fb3773a212b141ada619e1').message.valid_encoding?
|
244
|
+
end
|
245
|
+
end
|
246
|
+
|
247
|
+
it 'safe_open_log_file must return text with valid encoding' do
|
248
|
+
with_git_repository('git_with_invalid_encoding') do |git|
|
249
|
+
git.activity.send(:safe_open_log_file) do |io|
|
250
|
+
io.read.valid_encoding?.must_equal true
|
251
|
+
end
|
252
|
+
end
|
253
|
+
end
|
254
|
+
|
255
|
+
it 'commit count when there is a tag named master' do
|
256
|
+
with_git_repository('git_with_master_tag') do |git|
|
257
|
+
git.activity.commit_count.must_equal 3
|
258
|
+
end
|
259
|
+
end
|
260
|
+
|
261
|
+
it 'commit tokens when there is a tag named master' do
|
262
|
+
with_git_repository('git_with_master_tag') do |git|
|
263
|
+
git.activity.commit_tokens.must_equal %w[57b2bd30b7bae970cb3b374a0c05fd6ec3088ebf
|
264
|
+
4e95717ac8cff8cdb10d83398d3ac667a2cca341
|
265
|
+
34b8a99e6e5dd39bc36893f71e0ab1685668731f]
|
266
|
+
end
|
267
|
+
end
|
268
|
+
|
269
|
+
it 'must cat file correctly' do
|
270
|
+
with_git_repository('git') do |core|
|
271
|
+
diff = OhlohScm::Diff.new(sha1: '4c734ad53b272c9b3d719f214372ac497ff6c068')
|
272
|
+
core.activity.cat_file(nil, diff).must_equal <<-EXPECTED.gsub(/^ {8}/, '')
|
273
|
+
/* Hello, World! */
|
274
|
+
#include <stdio.h>
|
275
|
+
main()
|
276
|
+
{
|
277
|
+
printf("Hello, World!\\n");
|
278
|
+
}
|
279
|
+
EXPECTED
|
280
|
+
end
|
281
|
+
end
|
282
|
+
|
283
|
+
describe 'commit_tokens' do
|
284
|
+
it 'must return commit tokens within range' do
|
285
|
+
with_git_repository('git_walk') do |git|
|
286
|
+
commit_tokens = CommitTokensHelper.new(git, commit_labels)
|
287
|
+
# Full history to a commit
|
288
|
+
commit_tokens.between(nil, :A).must_equal %i[A]
|
289
|
+
commit_tokens.between(nil, :B).must_equal %i[A B]
|
290
|
+
commit_tokens.between(nil, :C).must_equal %i[A B G H C]
|
291
|
+
commit_tokens.between(nil, :D).must_equal %i[A B G H C I D]
|
292
|
+
commit_tokens.between(nil, :G).must_equal %i[A G]
|
293
|
+
commit_tokens.between(nil, :H).must_equal %i[A G H]
|
294
|
+
commit_tokens.between(nil, :I).must_equal %i[A G H I]
|
295
|
+
commit_tokens.between(nil, :J).must_equal %i[A G H I J]
|
296
|
+
|
297
|
+
# Limited history from one commit to another
|
298
|
+
commit_tokens.between(:A, :A).must_be :empty?
|
299
|
+
commit_tokens.between(:A, :B).must_equal %i[B]
|
300
|
+
commit_tokens.between(:A, :C).must_equal %i[B G H C]
|
301
|
+
commit_tokens.between(:A, :D).must_equal %i[B G H C I D]
|
302
|
+
commit_tokens.between(:B, :D).must_equal %i[G H C I D]
|
303
|
+
commit_tokens.between(:C, :D).must_equal %i[I D]
|
304
|
+
commit_tokens.between(:G, :J).must_equal %i[H I J]
|
305
|
+
end
|
306
|
+
end
|
307
|
+
|
308
|
+
it 'must return trunk commit tokens within range' do
|
309
|
+
with_git_repository('git_walk') do |git|
|
310
|
+
commit_tokens = CommitTokensHelper.new(git, commit_labels, trunk_only: true)
|
311
|
+
# Full history to a commit
|
312
|
+
commit_tokens.between(nil, :A).must_equal %i[A]
|
313
|
+
commit_tokens.between(nil, :B).must_equal %i[A B]
|
314
|
+
commit_tokens.between(nil, :C).must_equal %i[A B C]
|
315
|
+
commit_tokens.between(nil, :D).must_equal %i[A B C D]
|
316
|
+
|
317
|
+
# Limited history from one commit to another
|
318
|
+
commit_tokens.between(:A, :A).must_be :empty?
|
319
|
+
commit_tokens.between(:A, :B).must_equal %i[B]
|
320
|
+
commit_tokens.between(:A, :C).must_equal %i[B C]
|
321
|
+
commit_tokens.between(:A, :D).must_equal %i[B C D]
|
322
|
+
commit_tokens.between(:B, :D).must_equal %i[C D]
|
323
|
+
commit_tokens.between(:C, :D).must_equal %i[D]
|
324
|
+
end
|
325
|
+
end
|
326
|
+
|
327
|
+
it 'must commit all changes in the working directory' do
|
328
|
+
tmpdir do |dir|
|
329
|
+
core = OhlohScm::Factory.get_core(scm_type: :git, url: dir)
|
330
|
+
|
331
|
+
core.activity.send(:init_db)
|
332
|
+
refute core.activity.send(:anything_to_commit?)
|
333
|
+
|
334
|
+
File.open(File.join(dir, 'README'), 'w') {}
|
335
|
+
assert core.activity.send(:anything_to_commit?)
|
336
|
+
|
337
|
+
c = OhlohScm::Commit.new
|
338
|
+
c.author_name = 'John Q. Developer'
|
339
|
+
c.message = 'Initial checkin.'
|
340
|
+
core.activity.commit_all(c)
|
341
|
+
refute core.activity.send(:anything_to_commit?)
|
342
|
+
|
343
|
+
core.activity.commits.size.must_equal 1
|
344
|
+
|
345
|
+
core.activity.commits.first.author_name.must_equal c.author_name
|
346
|
+
# Depending on version of Git used, we may or may not have trailing \n.
|
347
|
+
# We don't really care, so just compare the stripped versions.
|
348
|
+
core.activity.commits.first.message.strip.must_equal c.message.strip
|
349
|
+
|
350
|
+
assert_equal ['.gitignore', 'README'], core.activity.commits.first.diffs.collect(&:path).sort
|
351
|
+
end
|
352
|
+
end
|
353
|
+
|
354
|
+
it 'must test that no token returns nil' do
|
355
|
+
tmpdir do |dir|
|
356
|
+
core = OhlohScm::Factory.get_core(scm_type: :git, url: dir)
|
357
|
+
refute core.activity.read_token
|
358
|
+
core.activity.send(:init_db)
|
359
|
+
refute core.activity.read_token
|
360
|
+
end
|
361
|
+
end
|
362
|
+
|
363
|
+
it 'must test write and read token' do
|
364
|
+
tmpdir do |dir|
|
365
|
+
core = OhlohScm::Factory.get_core(scm_type: :git, url: dir)
|
366
|
+
core.activity.send(:init_db)
|
367
|
+
core.activity.send(:write_token, 'FOO')
|
368
|
+
refute core.activity.read_token # Token not valid until committed
|
369
|
+
core.activity.commit_all(OhlohScm::Commit.new)
|
370
|
+
core.activity.read_token.must_equal 'FOO'
|
371
|
+
end
|
372
|
+
end
|
373
|
+
|
374
|
+
it 'must test that commit_all includes write token' do
|
375
|
+
tmpdir do |dir|
|
376
|
+
core = OhlohScm::Factory.get_core(scm_type: :git, url: dir)
|
377
|
+
core.activity.send(:init_db)
|
378
|
+
c = OhlohScm::Commit.new
|
379
|
+
c.token = 'BAR'
|
380
|
+
core.activity.commit_all(c)
|
381
|
+
c.token.must_equal core.activity.read_token
|
382
|
+
end
|
383
|
+
end
|
384
|
+
|
385
|
+
it 'must test read_token encoding' do
|
386
|
+
with_git_repository('git_with_invalid_encoding') do |core|
|
387
|
+
core.activity.read_token
|
388
|
+
end
|
389
|
+
end
|
390
|
+
|
391
|
+
def commit_labels
|
392
|
+
{ A: '886b62459ef1ffd01a908979d4d56776e0c5ecb2',
|
393
|
+
B: 'db77c232f01f7a649dd3a2216199a29cf98389b7',
|
394
|
+
C: 'f264fb40c340a415b305ac1f0b8f12502aa2788f',
|
395
|
+
D: '57fedf267adc31b1403f700cc568fe4ca7975a6b',
|
396
|
+
G: '97b80cb9743948cf302b6e21571ff40721a04c8d',
|
397
|
+
H: 'b8291f0e89567de3f691afc9b87a5f1908a6f3ea',
|
398
|
+
I: 'd067161caae2eeedbd74976aeff5c4d8f1ccc946',
|
399
|
+
J: 'b49aeaec003cf8afb18152cd9e292816776eecd6' }
|
400
|
+
end
|
401
|
+
end
|
402
|
+
end
|