Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue49 return vectors #271

Merged
merged 60 commits into from
Jun 11, 2019
Merged

Issue49 return vectors #271

merged 60 commits into from
Jun 11, 2019

Conversation

mikebentley15
Copy link
Collaborator

Fixes #49

Description:
You can now return std::vector<float>, std::vector<double>, and std::vector<long double> from tests.

  • I added those three value types to flit::Variant
  • Added toString() to flit::Variant which is now how it is output to file in flit::TestBase
  • Added fromString() to flit::Variant which is now how it is read from file in flit::TestBase

Documentation:
Oops, I did not yet update the documentation.

Tests:

  • Added tests/flit_src/tst_TestBase.cpp
  • Added tests/flit_src/tst_Variant.cpp
  • Copied tests/tinydir.h to do directory listings
  • Added tests/fsutil.h with tests/harness/tst_fsutil.cpp
  • Updated other tests to pass

I probably need to add a few more tests

  • Variant(string) with challenging strings
  • Not all functionality in fsutils.h are tested

The fixes are problems found by the unit tests
All types except for LongDouble and None.  This will now include
the vector types.  A biproduct of this change is that strings
will be different in the files than before, they will not be
verbatim in the file, but rather will be Variant("...").
This is based on the value in the results file.  The fromString()
method is used here to generate a Variant() from the file.  The file
is populated using the toString() method from Variant(), so it simply
is required that they are inverses of each other.
--help: show help documentation
--verbose: show verbose information
--quiet: don't print anything
--list-tests: only list test names
Also add empty tests for fsutils.cpp
It worked before, but only because each test executable is made
up of only one compilation unit, otherwise we may otherwise get
a duplicate item error if more than one compilation unit would
make up a test executable.
For std::runtime_error to be thrown
I tried to move to GCC 4.9 in Travis-CI, but with difficulty.  So, I
instead found workarounds for using GCC 4.8.4
Added mkdir(), rmdir(), chdir(), and curdir().
@mikebentley15 mikebentley15 added the tests Involves touching tests label Jun 11, 2019
@mikebentley15
Copy link
Collaborator Author

Looks like I still need to

  • update documentation
  • make more difficult tests for Variant(std::string)
  • implement Variant(std::vector<std::string>)

@mikebentley15
Copy link
Collaborator Author

@IanBriggs I have completed all changes I wanted to do.

  • so much testing -- it should be more than sufficient
  • std::vector<std::string> can now be returned from a test
  • I used the string(len=..., val="...") format for encoding a single string, then I can easily do a vector of them. Before, I was assuming that the end of the string with "), and I was taking everything between the beginning " and that ending. Now it is more complicated, and more extendable.
  • documentation has been updated to reflect these changes (surprisingly only a little documentation for such a big internal change).

Please review at your earliest convenience. This might be useful for our tutorial.

Copy link
Collaborator Author

@mikebentley15 mikebentley15 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've finished my review of my own work, Ian. Please take a look. I found some things I want to change anyway, but please see if there are things I missed or things that could have been done better.

Thank you!

Copy link
Collaborator

@IanBriggs IanBriggs left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for adding abs to the empty test.
Looks good to me.

@mikebentley15 mikebentley15 force-pushed the issue49-return-vectors branch from 72cb1a8 to 6a05a5a Compare June 11, 2019 22:03
@mikebentley15 mikebentley15 merged commit c5af645 into devel Jun 11, 2019
@mikebentley15 mikebentley15 deleted the issue49-return-vectors branch June 11, 2019 22:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
c++ Involves touching c++ code documentation Involves touching documentation tests Involves touching tests
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Return arbitrary length score array
2 participants