summaryrefslogtreecommitdiffstats
path: root/src/test/CppTests/Operators.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/CppTests/Operators.test.ts')
-rw-r--r--src/test/CppTests/Operators.test.ts300
1 files changed, 300 insertions, 0 deletions
diff --git a/src/test/CppTests/Operators.test.ts b/src/test/CppTests/Operators.test.ts
new file mode 100644
index 0000000..09f5dd4
--- /dev/null
+++ b/src/test/CppTests/Operators.test.ts
@@ -0,0 +1,300 @@
+//
+// Note: This example test is leveraging the Mocha test framework.
+// Please refer to their documentation on https://mochajs.org/ for help.
+//
+
+// The module 'assert' provides assertion methods from node
+import * as assert from "assert";
+
+// You can import and use all API from the 'vscode' module
+// as well as import your extension to test it
+import * as vscode from "vscode";
+import TestSetup from "./TestSetup";
+
+// Defines a Mocha test suite to group tests of similar kind together
+suite("C++ - Operators Tests", () => {
+ const testSetup: TestSetup = new TestSetup("void foo();");
+
+ // Tests
+ test("+ operator", () => {
+ const result = testSetup.SetLine("T operator +(const T& lhs, const T2& rhs);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param lhs \n * @param rhs \n * @return T \n */", result);
+ });
+
+ test("- operator", () => {
+ const result = testSetup.SetLine("T operator- (const T& lhs, const T2& rhs);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param lhs \n * @param rhs \n * @return T \n */", result);
+ });
+
+ test("* operator with params", () => {
+ const result = testSetup.SetLine("T operator*(const T& lhs, const T2& rhs);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param lhs \n * @param rhs \n * @return T \n */", result);
+ });
+
+ test("/ operator", () => {
+ const result = testSetup.SetLine("T operator/(const T& lhs, const T2& rhs);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param lhs \n * @param rhs \n * @return T \n */", result);
+ });
+
+ test("% operator", () => {
+ const result = testSetup.SetLine("T operator%(const T& lhs, const T2& rhs);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param lhs \n * @param rhs \n * @return T \n */", result);
+ });
+
+ test("^ operator", () => {
+ const result = testSetup.SetLine("T operator^(const T& lhs, const T2& rhs);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param lhs \n * @param rhs \n * @return T \n */", result);
+ });
+
+ test("& operator with params", () => {
+ const result = testSetup.SetLine("T operator&(const T& lhs, const T2& rhs);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param lhs \n * @param rhs \n * @return T \n */", result);
+ });
+
+ test("| operator", () => {
+ const result = testSetup.SetLine("T operator|(const T& lhs, const T2& rhs);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param lhs \n * @param rhs \n * @return T \n */", result);
+ });
+
+ test("~ operator", () => {
+ const result = testSetup.SetLine("T operator~(const T& t);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param t \n * @return T \n */", result);
+ });
+
+ test("<< operator", () => {
+ const result = testSetup.SetLine("T operator<<(const T& lhs, const T2& rhs);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param lhs \n * @param rhs \n * @return T \n */", result);
+ });
+
+ test(">> operator", () => {
+ const result = testSetup.SetLine("T operator>>(const T& lhs, const T2& rhs);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param lhs \n * @param rhs \n * @return T \n */", result);
+ });
+
+ test("! operator", () => {
+ const result = testSetup.SetLine("bool operator!(const T& t);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param t \n * @return true \n * @return false \n */", result);
+ });
+
+ test("&& operator", () => {
+ const result = testSetup.SetLine("bool operator&&(const T& lhs, const T2& rhs);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param lhs \n * @param rhs \n * @return true \n"
+ + " * @return false \n */", result);
+ });
+
+ test("|| operator", () => {
+ const result = testSetup.SetLine("bool operator||(const T& lhs, const T2& rhs);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param lhs \n * @param rhs \n * @return true \n"
+ + " * @return false \n */", result);
+ });
+
+ test("!= operator", () => {
+ const result = testSetup.SetLine("bool operator!=(const T& lhs, const T2& rhs);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param lhs \n * @param rhs \n * @return true \n"
+ + " * @return false \n */", result);
+ });
+
+ test("== operator", () => {
+ const result = testSetup.SetLine("bool operator==(const T& lhs, const T2& rhs);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param lhs \n * @param rhs \n * @return true \n"
+ + " * @return false \n */", result);
+ });
+
+ test("<= operator", () => {
+ const result = testSetup.SetLine("bool operator<=(const T& lhs, const T2& rhs);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param lhs \n * @param rhs \n * @return true \n"
+ + " * @return false \n */", result);
+ });
+
+ test(">= operator", () => {
+ const result = testSetup.SetLine("bool operator>=(const T& lhs, const T2& rhs);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param lhs \n * @param rhs \n * @return true \n"
+ + " * @return false \n */", result);
+ });
+
+ test("< operator", () => {
+ const result = testSetup.SetLine("bool operator<(const T& lhs, const T2& rhs);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param lhs \n * @param rhs \n * @return true \n"
+ + " * @return false \n */", result);
+ });
+
+ test("> operator", () => {
+ const result = testSetup.SetLine("bool operator>(const T& lhs, const T2& rhs);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param lhs \n * @param rhs \n * @return true \n"
+ + " * @return false \n */", result);
+ });
+
+ test("= operator", () => {
+ const result = testSetup.SetLine("T& operator=(const T& t);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param t \n * @return T& \n */", result);
+ });
+
+ test("+= operator", () => {
+ const result = testSetup.SetLine("T& operator+=(const T& t);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param t \n * @return T& \n */", result);
+ });
+
+ test("-= operator", () => {
+ const result = testSetup.SetLine("T& operator-=(const T& t);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param t \n * @return T& \n */", result);
+ });
+
+ test("*= operator", () => {
+ const result = testSetup.SetLine("T& operator*=(const T& t);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param t \n * @return T& \n */", result);
+ });
+
+ test("/= operator", () => {
+ const result = testSetup.SetLine("T& operator/=(const T& t);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param t \n * @return T& \n */", result);
+ });
+
+ test("%= operator", () => {
+ const result = testSetup.SetLine("T& operator%=(const T& t);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param t \n * @return T& \n */", result);
+ });
+
+ test("^= operator", () => {
+ const result = testSetup.SetLine("T& operator^=(const T& t);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param t \n * @return T& \n */", result);
+ });
+
+ test("&= operator", () => {
+ const result = testSetup.SetLine("T& operator&=(const T& t);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param t \n * @return T& \n */", result);
+ });
+
+ test("|= operator", () => {
+ const result = testSetup.SetLine("T& operator|=(const T& t);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param t \n * @return T& \n */", result);
+ });
+
+ test(">>= operator", () => {
+ const result = testSetup.SetLine("T& operator>>=(const T& t);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param t \n * @return T& \n */", result);
+ });
+
+ test("<<= operator", () => {
+ const result = testSetup.SetLine("T& operator<<=(const T& t);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param t \n * @return T& \n */", result);
+ });
+
+ test("prefix ++ operator", () => {
+ const result = testSetup.SetLine("T& operator++();").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @return T& \n */", result);
+ });
+
+ test("prefix -- operator", () => {
+ const result = testSetup.SetLine("T& operator--();").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @return T& \n */", result);
+ });
+
+ test("postfix ++ operator", () => {
+ const result = testSetup.SetLine("T operator++(int);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @return T \n */", result);
+ });
+
+ test("postfix -- operator", () => {
+ const result = testSetup.SetLine("T operator--(int);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @return T \n */", result);
+ });
+
+ test("() operator", () => {
+ let result = testSetup.SetLine("R operator()(const T& a, const T2& b);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param a \n * @param b \n * @return R \n */", result);
+
+ result = testSetup.SetLine("R operator( )(const T& a, const T2& b);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param a \n * @param b \n * @return R \n */", result);
+ });
+
+ test(", operator", () => {
+ const result = testSetup.SetLine("T2& operator , (const T2& t);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param t \n * @return T2& \n */", result);
+ });
+
+ test("* operator without params", () => {
+ const result = testSetup.SetLine("R& operator*();").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @return R& \n */", result);
+ });
+
+ test("& operator without params", () => {
+ const result = testSetup.SetLine("R* operator&();").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @return R* \n */", result);
+ });
+
+ test("->* operator", () => {
+ const result = testSetup.SetLine("R& operator->*();").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @return R& \n */", result);
+ });
+
+ test("-> operator", () => {
+ const result = testSetup.SetLine("R* operator->();").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @return R* \n */", result);
+ });
+
+ test("[] operator", () => {
+ let result = testSetup.SetLine("R operator[](S b);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param b \n * @return R \n */", result);
+
+ result = testSetup.SetLine("R operator[ ](S b);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param b \n * @return R \n */", result);
+ });
+
+ test("new operator", () => {
+ const result = testSetup.SetLine("void* operator new ( std::size_t count );").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param count \n * @return void* \n */", result);
+ });
+
+ test("new[] operator", () => {
+ let result = testSetup.SetLine("void* operator new[]( std::size_t count, std::align_val_t al);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param count \n * @param al \n * @return void* \n */", result);
+
+ result = testSetup.SetLine("void* operator new[ ]( std::size_t count, std::align_val_t al);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param count \n * @param al \n * @return void* \n */", result);
+ });
+
+ test("delete operator", () => {
+ const result = testSetup.SetLine("void operator delete(void* ptr, std::size_t sz, std::align_val_t al);")
+ .GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param ptr \n * @param sz \n * @param al \n */", result);
+ });
+
+ test("delete[] operator", () => {
+ let result = testSetup.SetLine("void operator delete[] (void* ptr);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param ptr \n */", result);
+
+ result = testSetup.SetLine("void operator delete [ ] (void* ptr);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param ptr \n */", result);
+ });
+
+ test("user literal operator", () => {
+ let result = testSetup.SetLine("long double operator\"\"_My_C00l_Conversion(const char * str);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param str \n * @return long double \n */", result);
+
+ result = testSetup.SetLine("long double operator \"\"_My_C00l_Conversion(const char * str);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param str \n * @return long double \n */", result);
+
+ result = testSetup.SetLine("long double operator\"\"_My_C00l_Conversion (const char * str);").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @param str \n * @return long double \n */", result);
+ });
+
+ test("Implicit conversion operator", () => {
+ const result = testSetup.SetLine("operator int() const").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @return int \n */", result);
+ });
+
+ test("Explicit conversion operator", () => {
+ const result = testSetup.SetLine("explicit operator int() const").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @return int \n */", result);
+ });
+
+ test("conversion operator to struct", () => {
+ const result = testSetup.SetLine("explicit operator struct foo() const").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @return struct foo \n */", result);
+ });
+
+ test("conversion operator to struct pointer", () => {
+ const result = testSetup.SetLine("explicit operator struct foo*() const").GetResult();
+ assert.equal("/**\n * @brief \n * \n * @return struct foo* \n */", result);
+ });
+});