diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2016-10-27 14:56:56 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2016-10-27 14:56:56 +0900 |
commit | 2903497e256388eff53b408875c0f2239c3566cb (patch) | |
tree | 347db66bc83651efce25eb72c422688936027b18 /test | |
parent | fd257fb9c490f4af3fbfb71c4d099fe876be28eb (diff) | |
download | libsolv-2903497e256388eff53b408875c0f2239c3566cb.tar.gz libsolv-2903497e256388eff53b408875c0f2239c3566cb.tar.bz2 libsolv-2903497e256388eff53b408875c0f2239c3566cb.zip |
Imported Upstream version 0.6.15upstream/0.6.15
Change-Id: Ifaa897b8285aab537e27433f14a18f11a4817c17
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/testcases/distupgrade/dup_multiversion1 | 91 | ||||
-rw-r--r-- | test/testcases/distupgrade/dup_multiversion2 | 106 | ||||
-rw-r--r-- | test/testcases/distupgrade/dup_multiversion3 | 88 |
3 files changed, 285 insertions, 0 deletions
diff --git a/test/testcases/distupgrade/dup_multiversion1 b/test/testcases/distupgrade/dup_multiversion1 new file mode 100644 index 0000000..326de7a --- /dev/null +++ b/test/testcases/distupgrade/dup_multiversion1 @@ -0,0 +1,91 @@ +# test dup with multiversion packages +# +# part 1: simple update +repo system 0 testtags <inline> +#>=Pkg: a 1 1 i686 +repo available 0 testtags <inline> +#>=Pkg: a 2 1 i686 +system i686 * system + +job multiversion name a +job distupgrade all packages +# a-1-1 is treated as orphaned and stays behind +result transaction,problems <inline> +#>install a-2-1.i686@available + +nextjob + +job multiversion name a +job distupgrade repo available +# a-1-1 is treated as orphaned and stays behind +result transaction,problems <inline> +#>install a-2-1.i686@available + + +### same with keeporphans + +nextjob + +solverflags keeporphans +job multiversion name a +job distupgrade all packages +# a-1-1 is treated as orphaned and stays behind +result transaction,problems <inline> +#>install a-2-1.i686@available + + +nextjob + +solverflags keeporphans +job multiversion name a +job distupgrade repo available +# a-1-1 is treated as orphaned and stays behind +result transaction,problems <inline> +#>install a-2-1.i686@available + + +### same with allowuninstall + +nextjob + +solverflags allowuninstall +job multiversion name a +job distupgrade all packages +# a-1-1 is treated as orphaned and stays behind +result transaction,problems <inline> +#>install a-2-1.i686@available + + +nextjob + +solverflags allowuninstall +job multiversion name a +job distupgrade repo available +# a-1-1 is treated as orphaned and stays behind +result transaction,problems <inline> +#>install a-2-1.i686@available + + +### same with allowuninstall and keeporphans + +nextjob + +solverflags allowuninstall keeporphans +job multiversion name a +job distupgrade all packages +# a-1-1 is treated as orphaned and stays behind +result transaction,problems <inline> +#>install a-2-1.i686@available + + +nextjob + +solverflags allowuninstall keeporphans +job multiversion name a +job distupgrade repo available +# a-1-1 is treated as orphaned and stays behind +result transaction,problems <inline> +#>install a-2-1.i686@available + + + diff --git a/test/testcases/distupgrade/dup_multiversion2 b/test/testcases/distupgrade/dup_multiversion2 new file mode 100644 index 0000000..18909eb --- /dev/null +++ b/test/testcases/distupgrade/dup_multiversion2 @@ -0,0 +1,106 @@ +# test dup with multiversion packages +# same as with dup_multiversion1, but we can't keep the orphan + +# +# part 1: simple update +repo system 0 testtags <inline> +#>=Pkg: a 1 1 i686 +#>=Pkg: b 1 1 i686 +repo available 0 testtags <inline> +#>=Pkg: a 2 1 i686 +#>=Pkg: b 2 1 i686 +#>=Con: a = 1-1 +system i686 * system + +job multiversion name a +job distupgrade all packages +result transaction,problems <inline> +#>erase a-1-1.i686@system +#>install a-2-1.i686@available +#>upgrade b-1-1.i686@system b-2-1.i686@available + +nextjob + +job multiversion name a +job distupgrade repo available +result transaction,problems <inline> +#>erase a-1-1.i686@system +#>install a-2-1.i686@available +#>upgrade b-1-1.i686@system b-2-1.i686@available + + +### same with keeporphans, this will result in problems as we cannot keep the orphan + +nextjob + +solverflags keeporphans +job multiversion name a +job distupgrade all packages +result transaction,problems <inline> +#>install a-2-1.i686@available +#>problem 4d4de423 info package b-2-1.i686 conflicts with a = 1-1 provided by a-1-1.i686 +#>problem 4d4de423 solution 2cf4745c erase a-1-1.i686@system +#>problem 4d4de423 solution 2cf4745c replace a-1-1.i686@system a-2-1.i686@available +#>problem 4d4de423 solution 5a433aff allow b-1-1.i686@system +#>problem 4d4de423 solution ce4305f2 erase b-1-1.i686@system + +nextjob + +solverflags keeporphans +job multiversion name a +job distupgrade repo available +result transaction,problems <inline> +#>install a-2-1.i686@available +#>problem 4d4de423 info package b-2-1.i686 conflicts with a = 1-1 provided by a-1-1.i686 +#>problem 4d4de423 solution 2cf4745c erase a-1-1.i686@system +#>problem 4d4de423 solution 2cf4745c replace a-1-1.i686@system a-2-1.i686@available +#>problem 4d4de423 solution 5a433aff allow b-1-1.i686@system +#>problem 4d4de423 solution ce4305f2 erase b-1-1.i686@system + +### same with allowuninstall + +nextjob + +solverflags allowuninstall +job multiversion name a +job distupgrade all packages +result transaction,problems <inline> +#>erase a-1-1.i686@system +#>install a-2-1.i686@available +#>upgrade b-1-1.i686@system b-2-1.i686@available + +nextjob + +solverflags allowuninstall +job multiversion name a +job distupgrade repo available +result transaction,problems <inline> +#>erase a-1-1.i686@system +#>install a-2-1.i686@available +#>upgrade b-1-1.i686@system b-2-1.i686@available + + +### same with allowuninstall and keeporphans + +nextjob + +solverflags allowuninstall keeporphans +job multiversion name a +job distupgrade all packages +# a-1-1 is treated as orphaned and stays behind +result transaction,problems <inline> +#>erase b-1-1.i686@system +#>install a-2-1.i686@available + + +nextjob + +solverflags allowuninstall keeporphans +job multiversion name a +job distupgrade repo available +# a-1-1 is treated as orphaned and stays behind +result transaction,problems <inline> +#>erase b-1-1.i686@system +#>install a-2-1.i686@available + + diff --git a/test/testcases/distupgrade/dup_multiversion3 b/test/testcases/distupgrade/dup_multiversion3 new file mode 100644 index 0000000..8be3190 --- /dev/null +++ b/test/testcases/distupgrade/dup_multiversion3 @@ -0,0 +1,88 @@ +# test dup with multiversion packages where we cannot install the +# target. Should give problems except for allowuninstall. +# +# part 1: simple update +repo system 0 testtags <inline> +#>=Pkg: a 1 1 i686 +repo available 0 testtags <inline> +#>=Pkg: a 2 1 i686 +#>=Req: c +system i686 * system + +job multiversion name a +job distupgrade all packages +result transaction,problems <inline> +#>problem 251f1f35 info nothing provides c needed by a-2-1.i686 +#>problem 251f1f35 solution 2f2d254c allow a-1-1.i686@system + +nextjob + +job multiversion name a +job distupgrade repo available +result transaction,problems <inline> +#>erase a-1-1.i686@system +#>problem 251f1f35 info nothing provides c needed by a-2-1.i686 +#>problem 251f1f35 solution 2f2d254c allow a-1-1.i686@system + +### same with keeporphans + +nextjob + +solverflags keeporphans +job multiversion name a +job distupgrade all packages +result transaction,problems <inline> +#>problem 771581fd info nothing provides c needed by a-2-1.i686 +#>problem 771581fd solution 179b72ed allow a-1-1.i686@system +#>problem 771581fd solution 2cf4745c erase a-1-1.i686@system + +nextjob + +solverflags keeporphans +job multiversion name a +job distupgrade repo available +result transaction,problems <inline> +#>problem 771581fd info nothing provides c needed by a-2-1.i686 +#>problem 771581fd solution 179b72ed allow a-1-1.i686@system +#>problem 771581fd solution 2cf4745c erase a-1-1.i686@system + +### same with allowuninstall + +nextjob + +solverflags allowuninstall +job multiversion name a +job distupgrade all packages +result transaction,problems <inline> +#>erase a-1-1.i686@system + + +nextjob + +solverflags allowuninstall +job multiversion name a +job distupgrade repo available +result transaction,problems <inline> +#>erase a-1-1.i686@system + + +### same with allowuninstall and keeporphans + +nextjob + +solverflags allowuninstall keeporphans +job multiversion name a +job distupgrade all packages +result transaction,problems <inline> +#>erase a-1-1.i686@system + + +nextjob + +solverflags allowuninstall keeporphans +job multiversion name a +job distupgrade repo available +result transaction,problems <inline> +#>erase a-1-1.i686@system + + |