You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2005/12/03 02:31:49 UTC

svn commit: r351871 - /incubator/stdcxx/trunk/tests/algorithms/25.find.cpp

Author: sebor
Date: Fri Dec  2 17:31:44 2005
New Revision: 351871

URL: http://svn.apache.org/viewcvs?rev=351871&view=rev
Log:
2005-12-02  Anton Pevtsov  <an...@moscow.vdiweb.com>
	    Martin Sebor  <se...@roguewave.com>

	STDCXX-4
	* 25.find.cpp: New test exercising lib.alg.find.

Added:
    incubator/stdcxx/trunk/tests/algorithms/25.find.cpp   (with props)

Added: incubator/stdcxx/trunk/tests/algorithms/25.find.cpp
URL: http://svn.apache.org/viewcvs/incubator/stdcxx/trunk/tests/algorithms/25.find.cpp?rev=351871&view=auto
==============================================================================
--- incubator/stdcxx/trunk/tests/algorithms/25.find.cpp (added)
+++ incubator/stdcxx/trunk/tests/algorithms/25.find.cpp Fri Dec  2 17:31:44 2005
@@ -0,0 +1,296 @@
+/***************************************************************************
+ *
+ * 25.find.cpp - test exercising 25.1.2 [lib.alg.find]
+ *
+ * $Id$
+ *
+ ***************************************************************************
+ *
+ * Copyright (c) 1994-2005 Quovadx,  Inc., acting through its  Rogue Wave
+ * Software division. Licensed under the Apache License, Version 2.0 (the
+ * "License");  you may  not use this file except  in compliance with the
+ * License.    You    may   obtain   a   copy   of    the   License    at
+ * http://www.apache.org/licenses/LICENSE-2.0.    Unless   required    by
+ * applicable law  or agreed to  in writing,  software  distributed under
+ * the License is distributed on an "AS IS" BASIS,  WITHOUT WARRANTIES OR
+ * CONDITIONS OF  ANY KIND, either  express or implied.  See  the License
+ * for the specific language governing permissions  and limitations under
+ * the License.
+ * 
+ **************************************************************************/
+
+#include <algorithm>    // for find()
+#include <cstddef>      // for size_t
+
+#include <alg_test.h>   
+#include <driver.h>     // for rw_test()
+
+/**************************************************************************/
+
+_RWSTD_NAMESPACE (std) { 
+
+#ifndef _RWSTD_NO_EXPLICIT_INSTANTIATION
+
+template
+InputIter<eq_comp<base<> > > 
+find (InputIter<eq_comp<base<> > >, InputIter<eq_comp<base<> > >, 
+      const eq_comp<base<> >&);
+
+template
+InputIter<eq_comp<base<> > > 
+find_if (InputIter<eq_comp<base<> > >, InputIter<eq_comp<base<> > >, 
+         predicate<eq_comp<base<> > >);
+
+#endif // _RWSTD_NO_EXPLICIT_INSTANTIATION
+
+}   // namespace std
+
+
+/**************************************************************************/
+
+template <class T>
+struct Predicate
+{
+    static std::size_t funcalls_;
+
+    Predicate (const T &val, int /* dummy */)
+        : val_ (val) {
+        funcalls_ = 0;
+    }
+
+    class ConvertibleToBool {
+        bool result_;
+    public:
+        ConvertibleToBool (bool res): result_ (res) { /* empty */ }
+        operator bool() const { return result_; }
+    };
+
+    // return a type other than bool but one that is implicitly
+    // convertible to bool to detect incorrect assumptions
+    ConvertibleToBool operator() (T obj) /* not const */ {
+        ++funcalls_;
+        return ConvertibleToBool (obj == val_);
+    }
+
+private:
+    void operator= (Predicate&);
+    const T &val_;
+};
+
+template <class T>
+std::size_t Predicate<T>::funcalls_;
+
+/**************************************************************************/
+
+// used to initialize an array of objects of type T
+static const char *tinit_begin;
+
+int tinit ()
+{
+    typedef unsigned char UChar;
+
+    return UChar (*tinit_begin++);
+}
+
+/**************************************************************************/
+
+template <class InputIterator, class Predicate, class T>
+void test_find (int           line,     // line number of test case
+                const char   *src,      // source sequence
+                std::size_t   findoff,  // offset of the element to find
+                InputIterator dummy_iter,
+                T*,
+                Predicate    *pred)
+{
+    static const char* const itname = type_name (dummy_iter, (T*)0);
+    static const char* const pname  = pred ? "Predicate" : "operator==";
+
+    const std::size_t nsrc = std::strlen (src);
+
+    // normalize offset
+    if (std::size_t (-1) == findoff)
+        findoff = nsrc;
+
+    // have the T default ctor initialize objects from `src'
+    tinit_begin = src;
+    T::gen_     = tinit;
+
+    T* const tsrc = new T [nsrc];
+
+    T* const src_begin = tsrc;
+    T* const src_end   = tsrc + nsrc;
+
+    const InputIterator first =
+        make_iter (src_begin, src_begin, src_end, dummy_iter);
+
+    const InputIterator last =
+        make_iter (src_end, src_begin, src_end, dummy_iter);
+
+    // get a reference to the object to find
+    // or construct a temporary if no such object exists
+    const T &to_find = findoff < nsrc ? tsrc [findoff] : T ();
+
+    // construct a predicate object to use with find_if
+    const Predicate fun (to_find, 0 /* dummy */);
+
+    // reset the operator==() counter
+    T::n_total_op_eq_ = 0;
+
+    // invoke find() or find_if(), depending on the predicate flag
+    const InputIterator res = pred ?
+        std::find_if (first, last, fun) : std::find (first, last, to_find);
+
+    // silence a bogus EDG eccp remark #550-D:
+    // variable "res" was set but never used
+    _RWSTD_UNUSED (res);
+
+    // verify 25.1.5 p2
+    if (!rw_assert (res.cur_ == first.cur_ + findoff, 0, line,
+                    "line %d: find%{?}_if%{;} (%s = \"%s\", ..., '%c')"
+                    " == (it + %zu), got (it + %td)",
+                    __LINE__, pred != 0, itname, src, to_find.val_,
+                    findoff, res.cur_ - first.cur_)) {
+        delete[] tsrc;
+        return;
+    }
+
+    // verify 25.1.5 p3
+    // Complexity: At most last - first applications
+    //             of the corresponding predicate.
+    // The complexity when find is successful is actually
+    // (res - first) applications of the corresponding predicate.
+
+    const std::size_t npreds = pred ? fun.funcalls_ : T::n_total_op_eq_;
+
+    rw_assert (npreds <= findoff + 1, 0, line,
+               "line %d: find%{?}_if%{;} (%s = \"%s\", ..., '%c') "
+               "invoked %s %zu times, expected no more than %zu",
+               __LINE__, pred != 0, itname, src, to_find.val_,
+               pname, npreds, findoff + 1);
+
+    delete[] tsrc;
+}
+
+/**************************************************************************/
+
+template <class InputIterator, class T, class Predicate>
+void test_find (InputIterator dummy_iter, const T*, const Predicate* pred)
+{   
+    static const char* const itname = type_name (dummy_iter, (T*)0);
+
+    rw_info (0, 0, 0, "std::find%{?}_if%{;} (%s, %1$s, "
+             "%{?}Predicate%{:}const X&%{;})",
+             0 != pred, itname, 0 != pred);
+
+#define TEST(src, off_find)                            \
+    test_find (__LINE__, src, std::size_t (off_find),  \
+               dummy_iter, (X*)0, pred)
+
+    //    +------------------ subject sequence
+    //    |               +--- offset of the element to find (-1 for none)
+    //    |               |
+    //    |               |
+    //    v               v
+    TEST ("",            -1);
+    TEST ("a",            0);
+    TEST ("ab",           1);
+    TEST ("abc",          2);
+    TEST ("abcd",         3);
+    TEST ("abcde",        4);
+    TEST ("abcdef",       5);
+    TEST ("abcdefg",      6);
+    TEST ("abcdefgh",     7);
+    TEST ("abcdefghi",    8);
+    TEST ("abcdefghij",   9);
+    TEST ("abcdefghijk", 10);
+    TEST ("abcdefghijk", -1);
+}
+
+/**************************************************************************/
+
+/* extern */ int rw_opt_no_input_iter;   // --no-InputIterator
+/* extern */ int rw_opt_no_fwd_iter;     // --no-ForwardIterator
+/* extern */ int rw_opt_no_bidir_iter;   // --no-BidirectionalIterator
+/* extern */ int rw_opt_no_rnd_iter;     // --no-RandomAccessIterator
+/* extern */ int rw_opt_no_predicate;    // --no-Predicate
+
+static void
+test_find (bool test_predicate)
+{
+    rw_info (0, 0, 0, 
+             "template <class %s, class %s> "
+             "%1$s std::find%{?}_if%{;} (%1$s, %1$s, "
+             "%{?}%2$s%{:}const %2$s&%{;})",
+             "InputIterator", test_predicate ? "Predicate" : "T",
+             test_predicate);
+
+    const Predicate<X>* const pred = test_predicate ?
+        (Predicate<X>*)1 : (Predicate<X>*)0;
+
+    if (rw_opt_no_input_iter) {
+        rw_note (0, __FILE__, __LINE__, "InputIterator test disabled");
+    }
+    else {
+        test_find (InputIter<X>(0, 0, 0), (X*)0, pred);
+    }
+
+    if (rw_opt_no_fwd_iter) {
+        rw_note (0, __FILE__, __LINE__, "ForwardIterator test disabled");
+    }
+    else {
+        test_find (ConstFwdIter<X>(), (X*)0, pred);
+        test_find (FwdIter<X>(), (X*)0, pred);
+    }
+
+    if (rw_opt_no_bidir_iter) {
+        rw_note (0, __FILE__, __LINE__, "BidirectionalIterator test disabled");
+    }
+    else {
+        test_find (ConstBidirIter<X>(), (X*)0, pred);
+        test_find (BidirIter<X>(), (X*)0, pred);
+    }
+
+    if (rw_opt_no_rnd_iter) {
+        rw_note (0, __FILE__, __LINE__, "RandomAccessIterator test disabled");
+    }
+    else {
+        test_find (ConstRandomAccessIter<X>(), (X*)0, pred);
+        test_find (RandomAccessIter<X>(), (X*)0, pred);
+    }
+}
+
+/**************************************************************************/
+
+static int
+run_test (int, char*[])
+{
+    test_find (false);
+
+    if (rw_opt_no_predicate) {
+        rw_note (0, __FILE__, __LINE__, "Predicate test disabled");
+    }
+    else {
+        test_find (true);
+    }
+                
+    return 0;
+}
+
+/**************************************************************************/
+
+int main (int argc, char *argv[])
+{
+    return rw_test (argc, argv, __FILE__,
+                    "lib.alg.find",
+                    0 /* no comment */, run_test,
+                    "|-no-InputIterator#"
+                    "|-no-ForwardIterator#"
+                    "|-no-BidirectionalIterator#"
+                    "|-no-RandomAccessIterator#"
+                    "|-no-Predicate#",
+                    &rw_opt_no_input_iter,
+                    &rw_opt_no_fwd_iter,
+                    &rw_opt_no_bidir_iter,
+                    &rw_opt_no_rnd_iter,
+                    &rw_opt_no_predicate);
+}

Propchange: incubator/stdcxx/trunk/tests/algorithms/25.find.cpp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/stdcxx/trunk/tests/algorithms/25.find.cpp
------------------------------------------------------------------------------
    svn:keywords = Id