Fix: rewrite FileAndExt
authorOwen Waller <o.waller@kulawe.com>
Mon, 22 Sep 2014 17:40:09 +0000 (18:40 +0100)
committerspf13 <steve.francia@gmail.com>
Wed, 5 Nov 2014 00:19:19 +0000 (19:19 -0500)
commitf81f9ceb40db8b3dbb586e52a3939dd8a136502f
treea2f59eee07b1e500f50e28b077a45dbbf56a0b53
parent5906c8652dfb63e9e54b718ea5787c7231816c12
Fix: rewrite FileAndExt

FileAndExt has now be completely rewritten and now works as may
reasonably be expected. The test cases for:

ReplaceExtension
Filename
FileAndExt

now all pass.

The problem was the way path.Base was being used.
Firstly Base returns "." if the directory is empty, but it can also
return "." for the current directory, or ".." for the parent directory,
if these are the last elements in the path. Simply detecting the
presence of a "." in the returned string and truncating before the "."
does not therefore always result in a valid filename.
Secondly, Base strips any trailing slashes making is more difficult to
detect when the path does not end in a filename but in a directory name
i.e. a no filename case. Not detecting this incorrectly results in the
last directory name being returned as the filename.

The code has been updated to take account of of both situations so that:
1) An empty string for both the filename and extension is returned if the
path does not contain a filename (plus an optional extension). This
includes both the empty path case, and the ends in a directory case.
2) If the path represents a filename with an extension then both the
filename and the extension (minus any dots) are returned as non empty
strings.
3) If the path represents a filename without an extension then filename
will be returned as a non empty string (minus any dot) and the extension
will be returned as an empty string.
helpers/path.go