mirror of
https://github.com/git/git.git
synced 2026-01-08 09:13:48 +00:00
Update the table output format for the git-repo(1) structure command to begin printing the total inflated object size info by object type. To be more human-friendly, larger values are scaled down and displayed with the appropriate unit prefix. Output for the keyvalue and nul formats remains unchanged. Signed-off-by: Justin Tobler <jltobler@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
144 lines
3.6 KiB
Bash
Executable File
144 lines
3.6 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
test_description='test git repo structure'
|
|
|
|
. ./test-lib.sh
|
|
|
|
test_expect_success 'empty repository' '
|
|
test_when_finished "rm -rf repo" &&
|
|
git init repo &&
|
|
(
|
|
cd repo &&
|
|
cat >expect <<-\EOF &&
|
|
| Repository structure | Value |
|
|
| -------------------- | ------ |
|
|
| * References | |
|
|
| * Count | 0 |
|
|
| * Branches | 0 |
|
|
| * Tags | 0 |
|
|
| * Remotes | 0 |
|
|
| * Others | 0 |
|
|
| | |
|
|
| * Reachable objects | |
|
|
| * Count | 0 |
|
|
| * Commits | 0 |
|
|
| * Trees | 0 |
|
|
| * Blobs | 0 |
|
|
| * Tags | 0 |
|
|
| * Inflated size | 0 B |
|
|
| * Commits | 0 B |
|
|
| * Trees | 0 B |
|
|
| * Blobs | 0 B |
|
|
| * Tags | 0 B |
|
|
EOF
|
|
|
|
git repo structure >out 2>err &&
|
|
|
|
test_cmp expect out &&
|
|
test_line_count = 0 err
|
|
)
|
|
'
|
|
|
|
test_expect_success SHA1 'repository with references and objects' '
|
|
test_when_finished "rm -rf repo" &&
|
|
git init repo &&
|
|
(
|
|
cd repo &&
|
|
test_commit_bulk 1005 &&
|
|
git tag -a foo -m bar &&
|
|
|
|
oid="$(git rev-parse HEAD)" &&
|
|
git update-ref refs/remotes/origin/foo "$oid" &&
|
|
|
|
# Also creates a commit, tree, and blob.
|
|
git notes add -m foo &&
|
|
|
|
cat >expect <<-\EOF &&
|
|
| Repository structure | Value |
|
|
| -------------------- | ---------- |
|
|
| * References | |
|
|
| * Count | 4 |
|
|
| * Branches | 1 |
|
|
| * Tags | 1 |
|
|
| * Remotes | 1 |
|
|
| * Others | 1 |
|
|
| | |
|
|
| * Reachable objects | |
|
|
| * Count | 3.02 k |
|
|
| * Commits | 1.01 k |
|
|
| * Trees | 1.01 k |
|
|
| * Blobs | 1.01 k |
|
|
| * Tags | 1 |
|
|
| * Inflated size | 16.03 MiB |
|
|
| * Commits | 217.92 KiB |
|
|
| * Trees | 15.81 MiB |
|
|
| * Blobs | 11.68 KiB |
|
|
| * Tags | 132 B |
|
|
EOF
|
|
|
|
git repo structure >out 2>err &&
|
|
|
|
test_cmp expect out &&
|
|
test_line_count = 0 err
|
|
)
|
|
'
|
|
|
|
test_expect_success SHA1 'keyvalue and nul format' '
|
|
test_when_finished "rm -rf repo" &&
|
|
git init repo &&
|
|
(
|
|
cd repo &&
|
|
test_commit_bulk 42 &&
|
|
git tag -a foo -m bar &&
|
|
|
|
cat >expect <<-\EOF &&
|
|
references.branches.count=1
|
|
references.tags.count=1
|
|
references.remotes.count=0
|
|
references.others.count=0
|
|
objects.commits.count=42
|
|
objects.trees.count=42
|
|
objects.blobs.count=42
|
|
objects.tags.count=1
|
|
objects.commits.inflated_size=9225
|
|
objects.trees.inflated_size=28554
|
|
objects.blobs.inflated_size=453
|
|
objects.tags.inflated_size=132
|
|
EOF
|
|
|
|
git repo structure --format=keyvalue >out 2>err &&
|
|
|
|
test_cmp expect out &&
|
|
test_line_count = 0 err &&
|
|
|
|
# Replace key and value delimiters for nul format.
|
|
tr "\n=" "\0\n" <expect >expect_nul &&
|
|
git repo structure --format=nul >out 2>err &&
|
|
|
|
test_cmp expect_nul out &&
|
|
test_line_count = 0 err
|
|
)
|
|
'
|
|
|
|
test_expect_success 'progress meter option' '
|
|
test_when_finished "rm -rf repo" &&
|
|
git init repo &&
|
|
(
|
|
cd repo &&
|
|
test_commit foo &&
|
|
|
|
GIT_PROGRESS_DELAY=0 git repo structure --progress >out 2>err &&
|
|
|
|
test_file_not_empty out &&
|
|
test_grep "Counting references: 2, done." err &&
|
|
test_grep "Counting objects: 3, done." err &&
|
|
|
|
GIT_PROGRESS_DELAY=0 git repo structure --no-progress >out 2>err &&
|
|
|
|
test_file_not_empty out &&
|
|
test_line_count = 0 err
|
|
)
|
|
'
|
|
|
|
test_done
|