test_regex_search.hpp

来自「Boost provides free peer-reviewed portab」· HPP 代码 · 共 497 行 · 第 1/2 页

HPP
497
字号
         while(*answer_table++ != -2){}   }   if(answer_table[0] >= 0)   {      // we should have had a match but didn't:      BOOST_REGEX_TEST_ERROR("Expected match was not found.", charT);   }   //   // and now field spitting:   //   test_iterator start2(search_text.begin(), search_text.end(), r, -1, opts), end2;   test_iterator copy2(start2);   int last_end2 = 0;   answer_table = test_info<charT>::answer_table();   while(start2 != end2)   {      if(start2 != copy2)      {         BOOST_REGEX_TEST_ERROR("Failed iterator != comparison.", charT);      }      if(!(start2 == copy2))      {         BOOST_REGEX_TEST_ERROR("Failed iterator == comparison.", charT);      }#ifdef BOOST_MSVC#pragma warning(push)#pragma warning(disable:4244)#endif      if(boost::re_detail::distance(search_text.begin(), start2->first) != last_end2)      {         BOOST_REGEX_TEST_ERROR(            "Error in location of start of field split, found: "             << boost::re_detail::distance(search_text.begin(), start2->first)            << ", expected: "            << last_end2            << ".", charT);      }      int expected_end = static_cast<int>(answer_table[0] < 0 ? search_text.size() : answer_table[0]);      if(boost::re_detail::distance(search_text.begin(), start2->second) != expected_end)      {         BOOST_REGEX_TEST_ERROR(            "Error in location of end2 of field split, found: "            << boost::re_detail::distance(search_text.begin(), start2->second)            << ", expected: "            << expected_end            << ".", charT);      }#ifdef BOOST_MSVC#pragma warning(pop)#endif      last_end2 = answer_table[1];      ++start2;      ++copy2;      // move on the answer table to next set of answers;      if(*answer_table != -2)         while(*answer_table++ != -2){}   }   if(answer_table[0] >= 0)   {      // we should have had a match but didn't:      BOOST_REGEX_TEST_ERROR("Expected match was not found.", charT);   }#if !BOOST_WORKAROUND(BOOST_MSVC, < 1300)   //   // and now both field splitting and $0:   //   std::vector<int> subs;   subs.push_back(-1);   subs.push_back(0);   start2 = test_iterator(search_text.begin(), search_text.end(), r, subs, opts);   copy2 = start2;   last_end2 = 0;   answer_table = test_info<charT>::answer_table();   while(start2 != end2)   {      if(start2 != copy2)      {         BOOST_REGEX_TEST_ERROR("Failed iterator != comparison.", charT);      }      if(!(start2 == copy2))      {         BOOST_REGEX_TEST_ERROR("Failed iterator == comparison.", charT);      }#ifdef BOOST_MSVC#pragma warning(push)#pragma warning(disable:4244)#endif      if(boost::re_detail::distance(search_text.begin(), start2->first) != last_end2)      {         BOOST_REGEX_TEST_ERROR(            "Error in location of start of field split, found: "             << boost::re_detail::distance(search_text.begin(), start2->first)            << ", expected: "            << last_end2            << ".", charT);      }      int expected_end = static_cast<int>(answer_table[0] < 0 ? search_text.size() : answer_table[0]);      if(boost::re_detail::distance(search_text.begin(), start2->second) != expected_end)      {         BOOST_REGEX_TEST_ERROR(            "Error in location of end2 of field split, found: "            << boost::re_detail::distance(search_text.begin(), start2->second)            << ", expected: "            << expected_end            << ".", charT);      }#ifdef BOOST_MSVC#pragma warning(pop)#endif      last_end2 = answer_table[1];      ++start2;      ++copy2;      if((start2 == end2) && (answer_table[0] >= 0))      {         BOOST_REGEX_TEST_ERROR(            "Expected $0 match not found", charT);      }      if(start2 != end2)      {         test_sub_match(*start2, search_text.begin(), answer_table, 0);         ++start2;         ++copy2;      }      // move on the answer table to next set of answers;      if(*answer_table != -2)         while(*answer_table++ != -2){}   }   if(answer_table[0] >= 0)   {      // we should have had a match but didn't:      BOOST_REGEX_TEST_ERROR("Expected match was not found.", charT);   }#endif}template <class charT, class traits>struct grep_test_predicate{   typedef typename std::basic_string<charT>::const_iterator test_iter;   grep_test_predicate(test_iter b, const int* a)      : m_base(b), m_table(a)   {}   bool operator()(const boost::match_results<test_iter>& what)   {      test_result(what, m_base, m_table);      // move on the answer table to next set of answers;      if(*m_table != -2)         while(*m_table++ != -2){}      return true;   }private:   test_iter m_base;   const int* m_table;};template<class charT, class traits>void test_regex_grep(boost::basic_regex<charT, traits>& r){   typedef typename std::basic_string<charT>::const_iterator const_iterator;   const std::basic_string<charT>& search_text = test_info<charT>::search_text();   boost::regex_constants::match_flag_type opts = test_info<charT>::match_options();   const int* answer_table = test_info<charT>::answer_table();   grep_test_predicate<charT, traits> pred(search_text.begin(), answer_table);   boost::regex_grep(pred, search_text.begin(), search_text.end(), r, opts);}template<class charT, class traits>void test_regex_match(boost::basic_regex<charT, traits>& r){   typedef typename std::basic_string<charT>::const_iterator const_iterator;   const std::basic_string<charT>& search_text = test_info<charT>::search_text();   boost::regex_constants::match_flag_type opts = test_info<charT>::match_options();   const int* answer_table = test_info<charT>::answer_table();   boost::match_results<const_iterator> what;   if(answer_table[0] < 0)   {      if(boost::regex_match(search_text, r, opts))      {         BOOST_REGEX_TEST_ERROR("boost::regex_match found a match when it should not have done so.", charT);      }   }   else   {      if((answer_table[0] > 0) && boost::regex_match(search_text, r, opts))      {         BOOST_REGEX_TEST_ERROR("boost::regex_match found a match when it should not have done so.", charT);      }      else if((answer_table[0] == 0) && (answer_table[1] == static_cast<int>(search_text.size())))      {         if(boost::regex_match(            search_text.begin(),            search_text.end(),            what,            r,            opts))         {            test_result(what, search_text.begin(), answer_table);         }         else if(answer_table[0] >= 0)         {            // we should have had a match but didn't:            BOOST_REGEX_TEST_ERROR("Expected match was not found.", charT);         }      }   }}template<class charT, class traits>void test(boost::basic_regex<charT, traits>& r, const test_regex_search_tag&){   const std::basic_string<charT>& expression = test_info<charT>::expression();   boost::regex_constants::syntax_option_type syntax_options = test_info<charT>::syntax_options();   try{      r.assign(expression, syntax_options);      if(r.status())      {         BOOST_REGEX_TEST_ERROR("Expression did not compile when it should have done, error code = " << r.status(), charT);      }      test_simple_search(r);      test_regex_iterator(r);      test_regex_token_iterator(r);      test_regex_grep(r);      test_regex_match(r);   }   catch(const boost::bad_expression& e)   {      BOOST_REGEX_TEST_ERROR("Expression did not compile when it should have done: " << e.what(), charT);   }   catch(const std::runtime_error& r)   {      BOOST_REGEX_TEST_ERROR("Received an unexpected std::runtime_error: " << r.what(), charT);   }   catch(const std::exception& r)   {      BOOST_REGEX_TEST_ERROR("Received an unexpected std::exception: " << r.what(), charT);   }   catch(...)   {      BOOST_REGEX_TEST_ERROR("Received an unexpected exception of unknown type", charT);   }}#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?