* [PATCH v2 2/3] tests/fetch: deduplicate local git testing code
2021-04-13 15:02 [PATCH v2 1/3] fetch/git: add support for disabling shared clones on unpack Henning Schild
@ 2021-04-13 15:02 ` Henning Schild
2021-04-13 21:37 ` Richard Purdie
2021-04-13 15:02 ` [PATCH v2 3/3] tests/fetch: add tests for local and remote "noshared" git fetching Henning Schild
1 sibling, 1 reply; 5+ messages in thread
From: Henning Schild @ 2021-04-13 15:02 UTC (permalink / raw)
To: bitbake-devel
Cc: isar-users, Richard Purdie, Cedric Hombourger, Chris Larson,
Henning Schild
Purely cosmetic change that probably improves the code.
Signed-off-by: Henning Schild <henning.schild@siemens.com>
---
lib/bb/tests/fetch.py | 33 +++++++--------------------------
1 file changed, 7 insertions(+), 26 deletions(-)
diff --git a/lib/bb/tests/fetch.py b/lib/bb/tests/fetch.py
index ddf6e97439b5..76797473db8a 100644
--- a/lib/bb/tests/fetch.py
+++ b/lib/bb/tests/fetch.py
@@ -673,7 +673,7 @@ class FetcherLocalTest(FetcherTest):
with self.assertRaises(bb.fetch2.UnpackError):
self.fetchUnpack(['file://a;subdir=/bin/sh'])
- def test_local_gitfetch_usehead(self):
+ def dummyGitTest(self, suffix):
# Create dummy local Git repo
src_dir = tempfile.mkdtemp(dir=self.tempdir,
prefix='gitfetch_localusehead_')
@@ -690,7 +690,7 @@ class FetcherLocalTest(FetcherTest):
# Fetch and check revision
self.d.setVar("SRCREV", "AUTOINC")
- url = "git://" + src_dir + ";protocol=file;usehead=1"
+ url = "git://" + src_dir + ";protocol=file;" + suffix
fetcher = bb.fetch.Fetch([url], self.d)
fetcher.download()
fetcher.unpack(self.unpackdir)
@@ -699,31 +699,12 @@ class FetcherLocalTest(FetcherTest):
unpack_rev = stdout[0].strip()
self.assertEqual(orig_rev, unpack_rev)
- def test_local_gitfetch_usehead_withname(self):
- # Create dummy local Git repo
- src_dir = tempfile.mkdtemp(dir=self.tempdir,
- prefix='gitfetch_localusehead_')
- src_dir = os.path.abspath(src_dir)
- bb.process.run("git init", cwd=src_dir)
- bb.process.run("git commit --allow-empty -m'Dummy commit'",
- cwd=src_dir)
- # Use other branch than master
- bb.process.run("git checkout -b my-devel", cwd=src_dir)
- bb.process.run("git commit --allow-empty -m'Dummy commit 2'",
- cwd=src_dir)
- stdout = bb.process.run("git rev-parse HEAD", cwd=src_dir)
- orig_rev = stdout[0].strip()
- # Fetch and check revision
- self.d.setVar("SRCREV", "AUTOINC")
- url = "git://" + src_dir + ";protocol=file;usehead=1;name=newName"
- fetcher = bb.fetch.Fetch([url], self.d)
- fetcher.download()
- fetcher.unpack(self.unpackdir)
- stdout = bb.process.run("git rev-parse HEAD",
- cwd=os.path.join(self.unpackdir, 'git'))
- unpack_rev = stdout[0].strip()
- self.assertEqual(orig_rev, unpack_rev)
+ def test_local_gitfetch_usehead(self):
+ self.dummyGitTest("usehead=1")
+
+ def test_local_gitfetch_usehead_withname(self):
+ self.dummyGitTest("usehead=1;name=newName")
class FetcherNoNetworkTest(FetcherTest):
def setUp(self):
--
2.26.3
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v2 3/3] tests/fetch: add tests for local and remote "noshared" git fetching
2021-04-13 15:02 [PATCH v2 1/3] fetch/git: add support for disabling shared clones on unpack Henning Schild
2021-04-13 15:02 ` [PATCH v2 2/3] tests/fetch: deduplicate local git testing code Henning Schild
@ 2021-04-13 15:02 ` Henning Schild
1 sibling, 0 replies; 5+ messages in thread
From: Henning Schild @ 2021-04-13 15:02 UTC (permalink / raw)
To: bitbake-devel
Cc: isar-users, Richard Purdie, Cedric Hombourger, Chris Larson,
Henning Schild
Signed-off-by: Henning Schild <henning.schild@siemens.com>
---
lib/bb/tests/fetch.py | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/lib/bb/tests/fetch.py b/lib/bb/tests/fetch.py
index 76797473db8a..74ba3fda65f5 100644
--- a/lib/bb/tests/fetch.py
+++ b/lib/bb/tests/fetch.py
@@ -706,6 +706,18 @@ class FetcherLocalTest(FetcherTest):
def test_local_gitfetch_usehead_withname(self):
self.dummyGitTest("usehead=1;name=newName")
+ def test_local_gitfetch_shared(self):
+ self.dummyGitTest("usehead=1;name=sharedName")
+ alt = os.path.join(self.unpackdir, 'git/.git/objects/info/alternates')
+ self.assertTrue(os.path.exists(alt))
+
+ def test_local_gitfetch_noshared(self):
+ self.d.setVar('BB_GIT_NOSHARED', '1')
+ self.unpackdir += '_noshared'
+ self.dummyGitTest("usehead=1;name=unsharedName")
+ alt = os.path.join(self.unpackdir, 'git/.git/objects/info/alternates')
+ self.assertFalse(os.path.exists(alt))
+
class FetcherNoNetworkTest(FetcherTest):
def setUp(self):
super().setUp()
@@ -2615,3 +2627,29 @@ class NPMTest(FetcherTest):
fetcher = bb.fetch.Fetch(['npmsw://' + swfile], self.d)
fetcher.download()
self.assertTrue(os.path.exists(ud.localpath))
+
+class GitSharedTest(FetcherTest):
+ def setUp(self):
+ super(GitSharedTest, self).setUp()
+ self.recipe_url = "git://git.openembedded.org/bitbake"
+ self.d.setVar('SRCREV', '82ea737a0b42a8b53e11c9cde141e9e9c0bd8c40')
+
+ @skipIfNoNetwork()
+ def test_shared_unpack(self):
+ fetcher = bb.fetch.Fetch([self.recipe_url], self.d)
+
+ fetcher.download()
+ fetcher.unpack(self.unpackdir)
+ alt = os.path.join(self.unpackdir, 'git/.git/objects/info/alternates')
+ self.assertTrue(os.path.exists(alt))
+
+ @skipIfNoNetwork()
+ def test_noshared_unpack(self):
+ self.d.setVar('BB_GIT_NOSHARED', '1')
+ self.unpackdir += '_noshared'
+ fetcher = bb.fetch.Fetch([self.recipe_url], self.d)
+
+ fetcher.download()
+ fetcher.unpack(self.unpackdir)
+ alt = os.path.join(self.unpackdir, 'git/.git/objects/info/alternates')
+ self.assertFalse(os.path.exists(alt))
--
2.26.3
^ permalink raw reply [flat|nested] 5+ messages in thread