Files
goSam/CONTRIBUTING.html
2022-11-18 00:05:18 -05:00

357 lines
12 KiB
HTML

<html>
<head>
<title>
goSam
</title>
<meta name="author" content="eyedeekay" />
<meta name="description" content="goSam" />
<meta name="keywords" content="master" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" type="text/css" href="showhider.css" />
</head>
<body>
<div id="navbar">
<a href="#shownav">
Show navigation
</a>
<div id="shownav">
<div id="hidenav">
<ul>
<li>
<a href="..">
Up one level ^
</a>
</li>
<li>
<a href="index.html">
index
</a>
</li>
<li>
<a href="CONTRIBUTING.html">
CONTRIBUTING
</a>
</li>
</ul>
<br>
<a href="#hidenav">
Hide Navigation
</a>
</div>
</div>
</div>
<a id="returnhome" href="/">
/
</a>
<h1>
How to make contributions to goSam
</h1>
<p>
Welcome to goSam, the easy-to-use http client for i2p. We&rsquo;re glad you&rsquo;re here
and interested in contributing. Here&rsquo;s some help getting started.
</p>
<h2>
Table of Contents
</h2>
<ul>
<li>
(1) Environment
</li>
<li>
(2) Testing
</li>
<li>
(3) Filing Issues/Reporting Bugs/Making Suggestions
</li>
<li>
(4) Contributing Code/Style Guide
<ul>
<li>
(a) Adding i2cp and tunnel Options
</li>
<li>
(b) Writing Tests
</li>
<li>
&copy; Style
</li>
<li>
(d) Other kinds of modification?
</li>
</ul>
</li>
<li>
(5) Conduct
</li>
</ul>
<h3>
(1) Environment
</h3>
<p>
goSam is a simple go library. You are free to use an IDE if you wish, but all
that is required to build and test the library are a go compiler and the gofmt
tool. Git is the version control system. All the files in the library are in a
single root directory. Invoking go build from this directory not generate any
files.
</p>
<h3>
(2) Testing
</h3>
<p>
Tests are implemented using the standard go &ldquo;testing&rdquo; library in files named
&ldquo;file_test.go,&rdquo; so tests of the client go in client_test.go, name lookups
in naming_test.go, et cetera. Everything that can be tested, should be tested.
</p>
<p>
Testing is done by running
</p>
<pre><code> go test
</code></pre>
<p>
More information about designing tests is below in the
<strong>
Contributing Code/Style Guide
</strong>
section below.
</p>
<h3>
(3) Filing issues/Reporting bugs/Making suggestions
</h3>
<p>
If you discover the library doing something you don&rsquo;t think is right, please let
us know! Just filing an issue here is OK.
</p>
<p>
If you need to suggest a feature, we&rsquo;re happy to hear from you too. Filing an
issue will give us a place to discuss how it&rsquo;s implemented openly and publicly.
</p>
<p>
Please file an issue for your new code contributions in order to provide us with
a place to discuss them for inclusion.
</p>
<h3>
(4) Contributing Code/Style Guide
</h3>
<p>
Welcome new coders. We have good news for you, this library is really easy to
contribute to. The easiest contributions take the form of i2cp and tunnel
options.
</p>
<h4>
(a) Adding i2cp and tunnel Options
</h4>
<p>
First, add a variable to store the state of your new option. For example, the
existing variables are in the Client class
<a href="https://github.com/cryptix/goSam/blob/701d7fcf03ddb354262fe213163dcf6f202a24f1/client.go#L29">
here:
</a>
</p>
<p>
i2cp and tunnel options are added in a highly uniform process of basically three
steps. First, you create a functional argument in the options.go file, in the
form:
</p>
<pre><code class="language-Go"> // SetOPTION sets $OPTION
func SetOPTION(arg type) func(*Client) error { // arg type
return func(c *Client) error { // pass a client to the inner function and declare error return function
if arg == valid { // validate the argument
c.option = s // set the variable to the argument value
return nil // if option is set successfully return nil error
}
return fmt.Errorf(&quot;Invalid argument:&quot; arg) // return a descriptive error if arg is invalid
}
}
</code></pre>
<p>
<a href="https://github.com/cryptix/goSam/blob/701d7fcf03ddb354262fe213163dcf6f202a24f1/options.go#L187">
example
</a>
</p>
<p>
Next, you create a getter which prepares the option. Regardless of the type of
option that is set, these must return strings representing valid i2cp options.
</p>
<pre><code class="language-Go"> //return the OPTION as a string.
func (c *Client) option() string {
return fmt.Sprintf(&quot;i2cp.option=%d&quot;, c.option)
}
</code></pre>
<p>
<a href="https://github.com/cryptix/goSam/blob/701d7fcf03ddb354262fe213163dcf6f202a24f1/options.go#L299">
example
</a>
</p>
<p>
Lastly, you&rsquo;ll need to add it to the allOptions function and the
Client.NewClient() function. To add it to allOptions, it looks like this:
</p>
<pre><code class="language-Go"> //return all options as string ready for passing to sendcmd
func (c *Client) allOptions() string {
return c.inlength() + &quot; &quot; +
c.outlength() + &quot; &quot; +
... //other options removed from example for brevity
c.option()
}
</code></pre>
<pre><code class="language-Go"> //return all options as string ready for passing to sendcmd
func (c *Client) NewClient() (*Client, error) {
return NewClientFromOptions(
SetHost(c.host),
SetPort(c.port),
... //other options removed from example for brevity
SetCompression(c.compression),
setlastaddr(c.lastaddr),
setid(c.id),
)
}
</code></pre>
<p>
<a href="https://github.com/cryptix/goSam/blob/701d7fcf03ddb354262fe213163dcf6f202a24f1/options.go#L333">
example
</a>
</p>
<h4>
(b) Writing Tests
</h4>
<p>
Before the feature can be added, you&rsquo;ll need to add a test for it to
options_test.go. To do this, just add your new option to the long TestOptions
functions in options_test.go.
</p>
<pre><code class="language-Go"> func TestOptionHost(t *testing.T) {
client, err := NewClientFromOptions(
SetHost(&quot;127.0.0.1&quot;),
SetPort(&quot;7656&quot;),
... //other options removed from example for brevity
SetCloseIdleTime(300001),
)
if err != nil {
t.Fatalf(&quot;NewClientFromOptions() Error: %q\n&quot;, err)
}
if result, err := client.validCreate(); err != nil {
t.Fatalf(err.Error())
} else {
t.Log(result)
}
client.CreateStreamSession(&quot;&quot;)
if err := client.Close(); err != nil {
t.Fatalf(&quot;client.Close() Error: %q\n&quot;, err)
}
}
func TestOptionPortInt(t *testing.T) {
client, err := NewClientFromOptions(
SetHost(&quot;127.0.0.1&quot;),
SetPortInt(7656),
... //other options removed from example for brevity
SetUnpublished(true),
)
if err != nil {
t.Fatalf(&quot;NewClientFromOptions() Error: %q\n&quot;, err)
}
if result, err := client.validCreate(); err != nil {
t.Fatalf(err.Error())
} else {
t.Log(result)
}
client.CreateStreamSession(&quot;&quot;)
if err := client.Close(); err != nil {
t.Fatalf(&quot;client.Close() Error: %q\n&quot;, err)
}
}
</code></pre>
<p>
If any of these tasks fail, then the test should fail.
</p>
<h4>
&copy; Style
</h4>
<p>
It&rsquo;s pretty simple to make sure the code style is right, just run gofmt over it
to adjust the indentation, and golint over it to ensure that your comments are
of the correct form for the documentation generator.
</p>
<h4>
(d) Other kinds of modification?
</h4>
<p>
It may be useful to extend goSam in other ways. Since there&rsquo;s not a
one-size-fits-all uniform way of dealing with these kinds of changes, open an
issue for discussion and
</p>
<h3>
(5) Conduct
</h3>
<p>
This is a small-ish, straightforward library intended to enable a clear
technical task. We should be able to be civil with eachother, and give and
accept criticism contructively and respectfully.
</p>
<p>
This document was drawn from the examples given by Mozilla
<a href="mozillascience.github.io/working-open-workshop/contributing/">
here
</a>
</p>
<div id="sourcecode">
<span id="sourcehead">
<strong>
Get the source code:
</strong>
</span>
<ul>
<li>
<a href="https://github.com/eyedeekay/goSam">
Source Repository: (https://github.com/eyedeekay/goSam)
</a>
</li>
</ul>
</div>
<div>
<a href="#show">
Show license
</a>
<div id="show">
<div id="hide">
<pre><code>The MIT License (MIT)
Copyright (c) 2014 Henry
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
</code></pre>
<a href="#hide">
Hide license
</a>
</div>
</div>
</div>
<div>
<iframe src="https://snowflake.torproject.org/embed.html" width="320" height="240" frameborder="0" scrolling="no"></iframe>
</div>
<div>
<a href="https://geti2p.net/">
<img src="i2plogo.png"></img>
I2P
</a>
</div>
</body>
</html>