//============================================================================== // This file is part of Master Password. // Copyright (c) 2011-2017, Maarten Billemont. // // Master Password is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Master Password is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You can find a copy of the GNU General Public License in the // LICENSE file. Alternatively, see . //============================================================================== // // mpw-tests-util.c // MasterPassword // // Created by Maarten Billemont on 2014-12-21. // Copyright (c) 2014 Lyndir. All rights reserved. // #include #include #include #include "mpw-util.h" #include "mpw-tests-util.h" xmlNodePtr mpw_xmlTestCaseNode(xmlNodePtr testCaseNode, const char *nodeName) { if (!nodeName) return NULL; // Try to find an attribute node. for (xmlAttrPtr child = testCaseNode->properties; child; child = child->next) if (xmlStrcmp( child->name, BAD_CAST nodeName ) == OK) return (xmlNodePtr)child; // Try to find an element node. for (xmlNodePtr child = testCaseNode->children; child; child = child->next) if (xmlStrcmp( child->name, BAD_CAST nodeName ) == OK) return child; // Missing content, try to find parent case. if (strcmp( nodeName, "parent" ) == OK) // Was just searching for testCaseNode's parent, none found. return NULL; xmlChar *parentId = mpw_xmlTestCaseString( testCaseNode, "parent" ); if (!parentId) // testCaseNode has no parent, give up. return NULL; for (xmlNodePtr otherTestCaseNode = testCaseNode->parent->children; otherTestCaseNode; otherTestCaseNode = otherTestCaseNode->next) { xmlChar *id = mpw_xmlTestCaseString( otherTestCaseNode, "id" ); int foundParent = id && xmlStrcmp( id, parentId ) == OK; xmlFree( id ); if (foundParent) { xmlFree( parentId ); return mpw_xmlTestCaseNode( otherTestCaseNode, nodeName ); } } err( "Missing parent: %s, for case: %s", parentId, mpw_xmlTestCaseString( testCaseNode, "id" ) ); return NULL; } xmlChar *mpw_xmlTestCaseString(xmlNodePtr context, const char *nodeName) { if (!nodeName) return NULL; xmlNodePtr child = mpw_xmlTestCaseNode( context, nodeName ); return child? xmlNodeGetContent( child ): NULL; } uint32_t mpw_xmlTestCaseInteger(xmlNodePtr context, const char *nodeName) { if (!nodeName) return 0; xmlChar *string = mpw_xmlTestCaseString( context, nodeName ); uint32_t integer = string? (uint32_t)atol( (char *)string ): 0; xmlFree( string ); return integer; }