// Copyright 2014 Google LLC. All rights reserved. // // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file or at // https://developers.google.com/open-source/licenses/bsd #include #include #include #include #include #include #include #include #include #include namespace shaka { std::filesystem::path GetTestDataFilePath(const std::string& name) { auto data_dir = std::filesystem::u8path(TEST_DATA_DIR); return data_dir / name; } std::filesystem::path GetSchemaPath() { auto schema_dir = std::filesystem::u8path(TEST_SCHEMA_DIR); return schema_dir / "DASH-MPD.xsd"; } MediaInfo ConvertToMediaInfo(const std::string& media_info_string) { MediaInfo media_info; CHECK(::google::protobuf::TextFormat::ParseFromString(media_info_string, &media_info)); return media_info; } MediaInfo GetTestMediaInfo(const std::string& media_info_file_name) { std::filesystem::path test_path = GetTestDataFilePath(media_info_file_name); return ConvertToMediaInfo(GetPathContent(test_path)); } bool ValidateMpdSchema(const std::string& mpd) { xml::scoped_xml_ptr doc( xmlParseMemory(mpd.data(), mpd.size())); if (!doc) { LOG(ERROR) << "Failed to parse mpd into an xml doc."; return false; } std::filesystem::path schema_path = GetSchemaPath(); std::string schema_str = GetPathContent(schema_path); // First, I need to load the schema as a xmlDoc so that I can pass the path of // the DASH-MPD.xsd. Then it can resolve the relative path included from the // XSD when creating xmlSchemaParserCtxt. xml::scoped_xml_ptr schema_as_doc( xmlReadMemory(schema_str.data(), schema_str.size(), schema_path.string().c_str(), NULL, 0)); DCHECK(schema_as_doc); xml::scoped_xml_ptr schema_parser_ctxt(xmlSchemaNewDocParserCtxt(schema_as_doc.get())); DCHECK(schema_parser_ctxt); xml::scoped_xml_ptr schema( xmlSchemaParse(schema_parser_ctxt.get())); DCHECK(schema); xml::scoped_xml_ptr valid_ctxt( xmlSchemaNewValidCtxt(schema.get())); DCHECK(valid_ctxt); int validation_result = xmlSchemaValidateDoc(valid_ctxt.get(), doc.get()); DLOG(INFO) << "XSD validation result: " << validation_result; return validation_result == 0; } void ExpectMpdToEqualExpectedOutputFile( const std::string& mpd_string, const std::string& expected_output_file) { std::filesystem::path expected_output_file_path = GetTestDataFilePath(expected_output_file); std::string expected_mpd = GetPathContent(expected_output_file_path); ASSERT_TRUE(!expected_mpd.empty()) << "Failed to read: " << expected_output_file; // Adding extra << here to get a formatted output. ASSERT_TRUE(XmlEqual(expected_mpd, mpd_string)) << "Expected:" << std::endl << expected_mpd << std::endl << "Actual:" << std::endl << mpd_string; } } // namespace shaka