--- /dev/null
+/*
+ * Copyright (c) 2005-2006 Apple Computer, Inc. All Rights Reserved.
+ *
+ * @APPLE_LICENSE_HEADER_START@
+ *
+ * This file contains Original Code and/or Modifications of Original Code
+ * as defined in and that are subject to the Apple Public Source License
+ * Version 2.0 (the 'License'). You may not use this file except in
+ * compliance with the License. Please obtain a copy of the License at
+ * http://www.opensource.apple.com/apsl/ and read it before using this
+ * file.
+ *
+ * The Original Code and all software distributed under the License are
+ * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
+ * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
+ * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
+ * Please see the License for the specific language governing rights and
+ * limitations under the License.
+ *
+ * @APPLE_LICENSE_HEADER_END@
+ *
+ * testmore.h
+ */
+
+#ifndef _TESTMORE_H_
+#define _TESTMORE_H_ 1
+
+#include <errno.h>
+#include <string.h>
+#include <stdio.h>
+#include <CoreServices/../Frameworks/CarbonCore.framework/Headers/MacTypes.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#define ok(THIS, TESTNAME) \
+ test_ok(!!(THIS), TESTNAME, test_directive, test_reason, \
+ __FILE__, __LINE__, NULL)
+#define is(THIS, THAT, TESTNAME) \
+({ \
+ __typeof__(THIS) _this = (THIS); \
+ __typeof__(THAT) _that = (THAT); \
+ test_ok((_this == _that), TESTNAME, test_directive, test_reason, \
+ __FILE__, __LINE__, \
+ "# got: '%d'\n" \
+ "# expected: '%d'\n", \
+ _this, _that); \
+})
+#define isnt(THIS, THAT, TESTNAME) \
+ cmp_ok((THIS), !=, (THAT), (TESTNAME))
+#define diag(MSG, ARGS...) \
+ test_diag(test_directive, test_reason, __FILE__, __LINE__, MSG, ## ARGS)
+#define cmp_ok(THIS, OP, THAT, TESTNAME) \
+({ \
+ __typeof__(THIS) _this = (THIS); \
+ __typeof__(THAT) _that = (THAT); \
+ test_ok((_this OP _that), TESTNAME, test_directive, test_reason, \
+ __FILE__, __LINE__, \
+ "# '%d'\n" \
+ "# " #OP "\n" \
+ "# '%d'\n", \
+ _this, _that); \
+})
+#define eq_string(THIS, THAT, TESTNAME) \
+({ \
+ const char *_this = (THIS); \
+ const char *_that = (THAT); \
+ test_ok(!strcmp(_this, _that), TESTNAME, test_directive, test_reason, \
+ __FILE__, __LINE__, \
+ "# '%s'\n" \
+ "# eq\n" \
+ "# '%s'\n", \
+ _this, _that); \
+})
+#define eq_stringn(THIS, THISLEN, THAT, THATLEN, TESTNAME) \
+({ \
+ __typeof__(THISLEN) _thislen = (THISLEN); \
+ __typeof__(THATLEN) _thatlen = (THATLEN); \
+ const char *_this = (THIS); \
+ const char *_that = (THAT); \
+ test_ok(_thislen == _thatlen && !strncmp(_this, _that, _thislen), \
+ TESTNAME, test_directive, test_reason, \
+ __FILE__, __LINE__, \
+ "# '%.*s'\n" \
+ "# eq\n" \
+ "# '%.*s'\n", \
+ (int)_thislen, _this, (int)_thatlen, _that); \
+})
+#define like(THIS, REGEXP, TESTNAME) like_not_yet_implemented()
+#define unlike(THIS, REGEXP, TESTNAME) unlike_not_yet_implemented()
+#define is_deeply(STRUCT1, STRUCT2, TESTNAME) is_deeply_not_yet_implemented()
+#define TODO switch(0) default
+#define SKIP switch(0) default
+#define SETUP switch(0) default
+#define todo(REASON) const char *test_directive __attribute__((unused)) = "TODO", \
+ *test_reason __attribute__((unused)) = (REASON)
+#define skip(WHY, HOW_MANY, UNLESS) if (!(UNLESS)) \
+ { test_skip((WHY), (HOW_MANY), 0); break; }
+#define setup(REASON) const char *test_directive = "SETUP", \
+ *test_reason = (REASON)
+#define pass(TESTNAME) ok(1, (TESTNAME))
+#define fail(TESTNAME) ok(0, (TESTNAME))
+#define BAIL_OUT(WHY) test_bail_out(WHY, __FILE__, __LINE__)
+#define plan_skip_all(REASON) test_plan_skip_all(REASON)
+#define plan_tests(COUNT) test_plan_tests(COUNT, __FILE__, __LINE__)
+
+#define ok_status(THIS, TESTNAME) \
+({ \
+ OSStatus _this = (THIS); \
+ test_ok(!_this, TESTNAME, test_directive, test_reason, \
+ __FILE__, __LINE__, \
+ "# status: %s(%ld)\n", \
+ sec_errstr(_this), _this); \
+})
+#define is_status(THIS, THAT, TESTNAME) \
+({ \
+ OSStatus _this = (THIS); \
+ OSStatus _that = (THAT); \
+ test_ok(_this == _that, TESTNAME, test_directive, test_reason, \
+ __FILE__, __LINE__, \
+ "# got: %s(%ld)\n" \
+ "# expected: %s(%ld)\n", \
+ sec_errstr(_this), _this, sec_errstr(_that), _that); \
+})
+#define ok_unix(THIS, TESTNAME) \
+({ \
+ int _this = (THIS) < 0 ? errno : 0; \
+ test_ok(!_this, TESTNAME, test_directive, test_reason, \
+ __FILE__, __LINE__, \
+ "# got: %s(%d)\n", \
+ strerror(_this), _this); \
+})
+#define is_unix(THIS, THAT, TESTNAME) \
+({ \
+ int _result = (THIS); \
+ int _this = _result < 0 ? errno : 0; \
+ int _that = (THAT); \
+ _that && _result < 0 \
+ ? test_ok(_this == _that, TESTNAME, test_directive, test_reason, \
+ __FILE__, __LINE__, \
+ "# got: %s(%d)\n" \
+ "# expected: %s(%d)\n", \
+ strerror(_this), _this, strerror(_that), _that) \
+ : test_ok(_this == _that, TESTNAME, test_directive, test_reason, \
+ __FILE__, __LINE__, \
+ "# got: %d\n" \
+ "# expected errno: %s(%d)\n", \
+ _result, strerror(_that), _that); \
+})
+
+
+extern const char *test_directive;
+extern const char *test_reason;
+
+void test_bail_out(const char *reason, const char *file, unsigned line);
+int test_diag(const char *directive, const char *reason,
+ const char *file, unsigned line, const char *fmt, ...);
+int test_ok(int passed, const char *description, const char *directive,
+ const char *reason, const char *file, unsigned line, const char *fmt, ...);
+void test_plan_skip_all(const char *reason);
+void test_plan_tests(int count, const char *file, unsigned line);
+void test_skip(const char *reason, int how_many, int unless);
+
+const char *sec_errstr(int err);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* !_TESTMORE_H_ */