diff options
| author | Joe Richey joerichey@google.com <joerichey@google.com> | 2017-05-31 17:54:35 -0700 |
|---|---|---|
| committer | Joe Richey joerichey@google.com <joerichey@google.com> | 2017-06-26 15:40:08 -0700 |
| commit | defd27f75df3a6eef84ac33adf89b1ce255e738c (patch) | |
| tree | 851a587fb4a12381e7a29e32759636021ecaf42c /actions/config_test.go | |
| parent | d71b7f248e21f5254c32ecbf752a1dbe940a1177 (diff) | |
actions: Simplify the callback mechanism
This commit makes the callbacks for getting keys easier to understand.
Functions which need keys now take a KeyFunc callback. This callback
contains a ProtectorInfo parameter (basically a read-only version of
metadata.ProtectorData) and a boolean which indicates if the call is
being retried. The documentation is also updated to say which functions
will retry the KeyFunc.
For selecting a protector, there is now an OptionFunc callback which
takes a slice of ProtectorOptions. A ProtectorOption is a ProtectorInfo
along with additional information about a linked filesystem (if
applicable).
This commit also adds in methods for getting the protector options for a
specific filesystem or policy. It also adds a function for getting the
policy descriptor for a specific path.
Change-Id: I41e0d94ffd44e7166b0c5cf1b5d18437960bdf90
Diffstat (limited to 'actions/config_test.go')
| -rw-r--r-- | actions/config_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/config_test.go b/actions/config_test.go index 2b10c10..c0b2089 100644 --- a/actions/config_test.go +++ b/actions/config_test.go @@ -39,13 +39,13 @@ func init() { func TestMakeConfig(t *testing.T) { defer os.RemoveAll(ConfigFileLocation) - err := NewConfigFile(testTime, true) + err := CreateConfigFile(testTime, true) if err != nil { t.Error(err) } os.RemoveAll(ConfigFileLocation) - err = NewConfigFile(testTime, false) + err = CreateConfigFile(testTime, false) if err != nil { t.Error(err) } |