X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=ext%2Ftestcase.c;h=4262199e8c663fcc5b995cd31678512883a697aa;hb=11600c0259c8cd27ad8c87b16421e65030b4b126;hp=055452f8355afb99f86ac1c89a1b002af4d6b3fd;hpb=5f5ff9576322b449fca131df791f4748e412df5f;p=platform%2Fupstream%2Flibsolv.git diff --git a/ext/testcase.c b/ext/testcase.c index 055452f..4262199 100644 --- a/ext/testcase.c +++ b/ext/testcase.c @@ -100,6 +100,7 @@ static struct resultflags2str { { TESTCASE_RESULT_CLEANDEPS, "cleandeps" }, { TESTCASE_RESULT_JOBS, "jobs" }, { TESTCASE_RESULT_USERINSTALLED, "userinstalled" }, + { TESTCASE_RESULT_ORDER, "order" }, { 0, 0 } }; @@ -135,6 +136,7 @@ static struct solverflags2str { { SOLVER_FLAG_STRONG_RECOMMENDS, "strongrecommends", 0 }, { SOLVER_FLAG_INSTALL_ALSO_UPDATES, "installalsoupdates", 0 }, { SOLVER_FLAG_ONLY_NAMESPACE_RECOMMENDED, "onlynamespacerecommended", 0 }, + { SOLVER_FLAG_STRICT_REPO_PRIORITY, "strictrepopriority", 0 }, { 0, 0, 0 } }; @@ -439,6 +441,45 @@ testcase_str2repo(Pool *pool, const char *str) return repo; } +static const char * +testcase_escape(Pool *pool, const char *str) +{ + size_t nbad = 0; + const char *p; + char *new, *np; + for (p = str; *p; p++) + if (*p == '\\' || *p == ' ' || *p == '\t') + nbad++; + if (!nbad) + return str; + new = pool_alloctmpspace(pool, strlen(str) + 1 + nbad * 2); + for (np = new, p = str; *p; p++) + { + *np++ = *p; + if (*p == '\\' || *p == ' ' || *p == '\t') + { + np[-1] = '\\'; + solv_bin2hex((unsigned char *)p, 1, np); + np += 2; + } + } + *np = 0; + return new; +} + +static void +testcase_unescape_inplace(char *str) +{ + char *p, *q; + for (p = q = str; *p;) + { + *q++ = *p++; + if (p[-1] == '\\') + solv_hex2bin((const char **)&p, (unsigned char *)q - 1, 1); + } + *q = 0; +} + /* check evr and buildflavors */ static int str2solvid_check(Pool *pool, Solvable *s, const char *start, const char *end, Id evrid) @@ -1194,6 +1235,7 @@ static struct rclass2str { { SOLVER_RULE_YUMOBS, "yumobs" }, { SOLVER_RULE_BLACK, "black" }, { SOLVER_RULE_RECOMMENDS, "recommends" }, + { SOLVER_RULE_STRICT_REPO_PRIORITY, "strictrepoprio" }, { 0, 0 } }; @@ -1392,6 +1434,25 @@ testcase_solverresult(Solver *solv, int resultflags) } queue_free(&q); } + if ((resultflags & TESTCASE_RESULT_ORDER) != 0) + { + int i; + char buf[256]; + Id p; + Transaction *trans = solver_create_transaction(solv); + transaction_order(trans, 0); + for (i = 0; i < trans->steps.count; i++) + { + p = trans->steps.elements[i]; + if (pool->installed && pool->solvables[p].repo == pool->installed) + sprintf(buf, "%4d erase ", i + 1); + else + sprintf(buf, "%4d install ", i + 1); + s = pool_tmpjoin(pool, "order ", buf, testcase_solvid2str(pool, p)); + strqueue_push(&sq, s); + } + transaction_free(trans); + } if ((resultflags & TESTCASE_RESULT_ALTERNATIVES) != 0) { char *altprefix; @@ -1582,6 +1643,43 @@ testcase_solverresult(Solver *solv, int resultflags) return result; } +static void +dump_custom_vendorcheck(Pool *pool, Strqueue *sq, int (*vendorcheck)(Pool *, Solvable *, Solvable *)) +{ + Id p, lastvendor = 0; + Queue vq; + int i, j; + char *cmd; + + queue_init(&vq); + FOR_POOL_SOLVABLES(p) + { + Id vendor = pool->solvables[p].vendor; + if (!vendor || vendor == lastvendor) + continue; + lastvendor = vendor; + for (i = 0; i < vq.count; i += 2) + if (vq.elements[i] == vendor) + break; + if (i == vq.count) + queue_push2(&vq, vendor, p); + } + for (i = 0; i < vq.count; i += 2) + { + Solvable *s1 = pool->solvables + vq.elements[i + 1]; + for (j = i + 2; j < vq.count; j += 2) + { + Solvable *s2 = pool->solvables + vq.elements[j + 1]; + if (vendorcheck(pool, s1, s2) || vendorcheck(pool, s2, s1)) + continue; + cmd = pool_tmpjoin(pool, "vendorclass", 0, 0); + cmd = pool_tmpappend(pool, cmd, " ", testcase_escape(pool, pool_id2str(pool, vq.elements[i]))); + cmd = pool_tmpappend(pool, cmd, " ", testcase_escape(pool, pool_id2str(pool, vq.elements[j]))); + strqueue_push(sq, cmd); + } + } + queue_free(&vq); +} static int testcase_write_mangled(Solver *solv, const char *dir, int resultflags, const char *testcasename, const char *resultname) @@ -1595,6 +1693,7 @@ testcase_write_mangled(Solver *solv, const char *dir, int resultflags, const cha Strqueue sq; char *cmd, *out, *result; const char *s; + int (*vendorcheck)(Pool *, Solvable *, Solvable *); if (!testcasename) testcasename = "testcase.t"; @@ -1671,12 +1770,15 @@ testcase_write_mangled(Solver *solv, const char *dir, int resultflags, const cha strqueue_push(&sq, cmd); } - if (pool->vendorclasses) + vendorcheck = pool_get_custom_vendorcheck(pool); + if (vendorcheck) + dump_custom_vendorcheck(pool, &sq, vendorcheck); + else if (pool->vendorclasses) { cmd = 0; for (i = 0; pool->vendorclasses[i]; i++) { - cmd = pool_tmpappend(pool, cmd ? cmd : "vendorclass", " ", pool->vendorclasses[i]); + cmd = pool_tmpappend(pool, cmd ? cmd : "vendorclass", " ", testcase_escape(pool, pool->vendorclasses[i])); if (!pool->vendorclasses[i + 1]) { strqueue_push(&sq, cmd); @@ -2096,7 +2198,7 @@ testcase_read(Pool *pool, FILE *fp, const char *testcase, Queue *job, char **res } repo->priority = prio; repo->subpriority = subprio; - if (strcmp(pieces[3], "empty") != 0) + if (strcmp(pieces[3], "empty") != 0 && npieces > 4) { const char *repotype = pool_tmpjoin(pool, pieces[3], 0, 0); /* gets overwritten in case */ if (!strcmp(pieces[4], "")) @@ -2237,6 +2339,9 @@ testcase_read(Pool *pool, FILE *fp, const char *testcase, Queue *job, char **res } else if (!strcmp(pieces[0], "vendorclass") && npieces > 1) { + int i; + for (i = 1; i < npieces; i++) + testcase_unescape_inplace(pieces[i]); pool_addvendorclass(pool, (const char **)(pieces + 1)); } else if (!strcmp(pieces[0], "namespace") && npieces > 1)