parent
90b8274d61
commit
bad71040c6
@ -1,109 +1,302 @@ |
||||
workspace: |
||||
base: /go |
||||
path: src/github.com/JonasFranzDEV/drone-crowdin |
||||
|
||||
pipeline: |
||||
test: |
||||
image: golang:1.9 |
||||
pull: true |
||||
commands: |
||||
- go vet |
||||
- go test -cover $(go list ./... | grep -v /vendor/) |
||||
|
||||
build_linux_amd64: |
||||
image: golang:1.9 |
||||
pull: true |
||||
group: build |
||||
environment: |
||||
- GOOS=linux |
||||
- GOARCH=amd64 |
||||
- CGO_ENABLED=0 |
||||
commands: |
||||
- go build -v -ldflags "-X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/amd64/drone-crowdin |
||||
|
||||
build_linux_arm64: |
||||
image: golang:1.9 |
||||
pull: true |
||||
group: build |
||||
environment: |
||||
- GOOS=linux |
||||
- GOARCH=arm64 |
||||
- CGO_ENABLED=0 |
||||
commands: |
||||
- go build -v -ldflags "-X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/arm64/drone-crowdin |
||||
|
||||
build_linux_arm: |
||||
image: golang:1.9 |
||||
pull: true |
||||
group: build |
||||
environment: |
||||
- GOOS=linux |
||||
- GOARCH=arm |
||||
- CGO_ENABLED=0 |
||||
- GOARM=7 |
||||
commands: |
||||
- go build -v -ldflags "-X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/arm/drone-crowdin |
||||
|
||||
# build_windows_amd64: |
||||
# image: golang:1.9-nanoserver |
||||
# pull: true |
||||
# group: build |
||||
# environment: |
||||
# - GOOS=windows |
||||
# - GOARCH=amd64 |
||||
# - CGO_ENABLED=0 |
||||
# commands: |
||||
# - go build -v -ldflags "-X main.build=${DRONE_BUILD_NUMBER}" -a -o release/windows/amd64/drone-crowdin |
||||
|
||||
publish_linux_amd64: |
||||
image: plugins/docker:17.05 |
||||
pull: true |
||||
repo: jonasfranz/crowdin |
||||
tags: [ latest, 1.0.0, 1.0, 1 ] |
||||
secrets: [ docker_username, docker_password ] |
||||
dockerfile: Dockerfile |
||||
when: |
||||
branch: master |
||||
event: push |
||||
|
||||
publish_linux_arm64: |
||||
image: plugins/docker:17.05 |
||||
pull: true |
||||
repo: jonasfranz/crowdin |
||||
tags: [ linux-arm64 ] |
||||
secrets: [ docker_username, docker_password ] |
||||
dockerfile: Dockerfile.arm64 |
||||
when: |
||||
branch: master |
||||
event: push |
||||
|
||||
publish_linux_arm: |
||||
image: plugins/docker:17.05 |
||||
pull: true |
||||
repo: jonasfranz/crowdin |
||||
tags: [ linux-arm ] |
||||
secrets: [ docker_username, docker_password ] |
||||
dockerfile: Dockerfile.arm |
||||
when: |
||||
branch: master |
||||
event: push |
||||
|
||||
# publish_windows_amd64: |
||||
# image: plugins/docker:17.05 |
||||
# pull: true |
||||
# repo: jonasfranz/crowdin |
||||
# tags: [ windows-amd64 ] |
||||
# secrets: [ docker_username, docker_password ] |
||||
# dockerfile: Dockerfile.windows |
||||
# when: |
||||
# branch: master |
||||
# event: push |
||||
|
||||
microbadger: |
||||
image: plugins/webhook:1 |
||||
pull: true |
||||
secrets: [ webhook_url ] |
||||
when: |
||||
branch: master |
||||
event: push |
||||
status: [ success ] |
||||
--- |
||||
kind: pipeline |
||||
name: testing |
||||
|
||||
platform: |
||||
os: linux |
||||
arch: amd64 |
||||
|
||||
steps: |
||||
- name: vet |
||||
pull: always |
||||
image: golang:1.13 |
||||
commands: |
||||
- go vet ./... |
||||
environment: |
||||
GO111MODULE: on |
||||
|
||||
- name: test |
||||
pull: always |
||||
image: golang:1.13 |
||||
commands: |
||||
- go test -cover $(go list ./... | grep -v /vendor/) |
||||
environment: |
||||
GO111MODULE: on |
||||
|
||||
trigger: |
||||
branch: |
||||
- master |
||||
|
||||
--- |
||||
kind: pipeline |
||||
name: linux-amd64 |
||||
|
||||
platform: |
||||
os: linux |
||||
arch: amd64 |
||||
|
||||
steps: |
||||
- name: build-push |
||||
pull: always |
||||
image: golang:1.13 |
||||
commands: |
||||
- "go build -mod=vendor -v -ldflags \"-X main.build=${DRONE_BUILD_NUMBER}\" -a -o release/linux/amd64/drone-crowdin" |
||||
environment: |
||||
CGO_ENABLED: 0 |
||||
GO111MODULE: on |
||||
when: |
||||
event: |
||||
- push |
||||
- pull_request |
||||
|
||||
- name: build-tag |
||||
pull: always |
||||
image: golang:1.13 |
||||
commands: |
||||
- "go build -mod=vendor -v -ldflags \"-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}\" -a -o release/linux/amd64/drone-crowdin" |
||||
environment: |
||||
CGO_ENABLED: 0 |
||||
GO111MODULE: on |
||||
when: |
||||
event: |
||||
- tag |
||||
|
||||
- name: executable |
||||
pull: always |
||||
image: golang:1.13 |
||||
commands: |
||||
- ./release/linux/amd64/drone-crowdin --help |
||||
|
||||
- name: dryrun |
||||
pull: always |
||||
image: plugins/docker:linux-amd64 |
||||
settings: |
||||
dockerfile: docker/Dockerfile.linux.amd64 |
||||
dry_run: true |
||||
password: |
||||
from_secret: docker_password |
||||
repo: jonasfranz/drone-crowdin |
||||
tags: linux-amd64 |
||||
username: |
||||
from_secret: docker_username |
||||
when: |
||||
event: |
||||
- pull_request |
||||
|
||||
- name: publish |
||||
pull: always |
||||
image: plugins/docker:linux-amd64 |
||||
settings: |
||||
auto_tag: true |
||||
auto_tag_suffix: linux-amd64 |
||||
dockerfile: docker/Dockerfile.linux.amd64 |
||||
password: |
||||
from_secret: docker_password |
||||
repo: jonasfranz/drone-crowdin |
||||
username: |
||||
from_secret: docker_username |
||||
when: |
||||
event: |
||||
- push |
||||
- tag |
||||
|
||||
trigger: |
||||
branch: |
||||
- master |
||||
|
||||
depends_on: |
||||
- testing |
||||
|
||||
--- |
||||
kind: pipeline |
||||
name: linux-arm64 |
||||
|
||||
platform: |
||||
os: linux |
||||
arch: arm64 |
||||
|
||||
steps: |
||||
- name: build-push |
||||
pull: always |
||||
image: golang:1.13 |
||||
commands: |
||||
- "go build -mod=vendor -v -ldflags \"-X main.build=${DRONE_BUILD_NUMBER}\" -a -o release/linux/arm64/drone-crowdin" |
||||
environment: |
||||
CGO_ENABLED: 0 |
||||
GO111MODULE: on |
||||
when: |
||||
event: |
||||
- push |
||||
- pull_request |
||||
|
||||
- name: build-tag |
||||
pull: always |
||||
image: golang:1.13 |
||||
commands: |
||||
- "go build -mod=vendor -v -ldflags \"-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}\" -a -o release/linux/arm64/drone-crowdin" |
||||
environment: |
||||
CGO_ENABLED: 0 |
||||
GO111MODULE: on |
||||
when: |
||||
event: |
||||
- tag |
||||
|
||||
- name: executable |
||||
pull: always |
||||
image: golang:1.13 |
||||
commands: |
||||
- ./release/linux/arm64/drone-crowdin --help |
||||
|
||||
- name: dryrun |
||||
pull: always |
||||
image: plugins/docker:linux-arm64 |
||||
settings: |
||||
dockerfile: docker/Dockerfile.linux.arm64 |
||||
dry_run: true |
||||
password: |
||||
from_secret: docker_password |
||||
repo: jonasfranz/drone-crowdin |
||||
tags: linux-arm64 |
||||
username: |
||||
from_secret: docker_username |
||||
when: |
||||
event: |
||||
- pull_request |
||||
|
||||
- name: publish |
||||
pull: always |
||||
image: plugins/docker:linux-arm64 |
||||
settings: |
||||
auto_tag: true |
||||
auto_tag_suffix: linux-arm64 |
||||
dockerfile: docker/Dockerfile.linux.arm64 |
||||
password: |
||||
from_secret: docker_password |
||||
repo: jonasfranz/drone-crowdin |
||||
username: |
||||
from_secret: docker_username |
||||
when: |
||||
event: |
||||
- push |
||||
- tag |
||||
|
||||
trigger: |
||||
branch: |
||||
- master |
||||
|
||||
depends_on: |
||||
- testing |
||||
|
||||
--- |
||||
kind: pipeline |
||||
name: linux-arm |
||||
|
||||
platform: |
||||
os: linux |
||||
arch: arm |
||||
|
||||
steps: |
||||
- name: build-push |
||||
pull: always |
||||
image: golang:1.13 |
||||
commands: |
||||
- "go build -mod=vendor -v -ldflags \"-X main.build=${DRONE_BUILD_NUMBER}\" -a -o release/linux/arm/drone-crowdin" |
||||
environment: |
||||
CGO_ENABLED: 0 |
||||
GO111MODULE: on |
||||
when: |
||||
event: |
||||
- push |
||||
- pull_request |
||||
|
||||
- name: build-tag |
||||
pull: always |
||||
image: golang:1.13 |
||||
commands: |
||||
- "go build -mod=vendor -v -ldflags \"-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}\" -a -o release/linux/arm/drone-crowdin" |
||||
environment: |
||||
CGO_ENABLED: 0 |
||||
GO111MODULE: on |
||||
when: |
||||
event: |
||||
- tag |
||||
|
||||
- name: executable |
||||
pull: always |
||||
image: golang:1.13 |
||||
commands: |
||||
- ./release/linux/arm/drone-crowdin --help |
||||
|
||||
- name: dryrun |
||||
pull: always |
||||
image: plugins/docker:linux-arm |
||||
settings: |
||||
dockerfile: docker/Dockerfile.linux.arm |
||||
dry_run: true |
||||
password: |
||||
from_secret: docker_password |
||||
repo: jonasfranz/drone-crowdin |
||||
tags: linux-arm |
||||
username: |
||||
from_secret: docker_username |
||||
when: |
||||
event: |
||||
- pull_request |
||||
|
||||
- name: publish |
||||
pull: always |
||||
image: plugins/docker:linux-arm |
||||
settings: |
||||
auto_tag: true |
||||
auto_tag_suffix: linux-arm |
||||
dockerfile: docker/Dockerfile.linux.arm |
||||
password: |
||||
from_secret: docker_password |
||||
repo: jonasfranz/drone-crowdin |
||||
username: |
||||
from_secret: docker_username |
||||
when: |
||||
event: |
||||
- push |
||||
- tag |
||||
|
||||
trigger: |
||||
branch: |
||||
- master |
||||
|
||||
depends_on: |
||||
- testing |
||||
|
||||
--- |
||||
kind: pipeline |
||||
name: notifications |
||||
|
||||
platform: |
||||
os: linux |
||||
arch: amd64 |
||||
|
||||
steps: |
||||
- name: manifest |
||||
pull: always |
||||
image: plugins/manifest:1 |
||||
settings: |
||||
ignore_missing: true |
||||
password: |
||||
from_secret: docker_password |
||||
spec: docker/manifest.tmpl |
||||
username: |
||||
from_secret: docker_username |
||||
|
||||
trigger: |
||||
branch: |
||||
- master |
||||
event: |
||||
- push |
||||
- tag |
||||
|
||||
depends_on: |
||||
- linux-amd64 |
||||
- linux-arm64 |
||||
- linux-arm |
||||
|
||||
... |
||||
|
@ -1,11 +0,0 @@ |
||||
FROM plugins/base:amd64 |
||||
MAINTAINER Jonas Franz <info@jonasfranz.de> |
||||
|
||||
LABEL org.label-schema.version=latest |
||||
LABEL org.label-schema.vcs-url="https://github.com/JonasFranzDEV/drone-crowdin.git" |
||||
LABEL org.label-schema.name="Drone Crowdin" |
||||
LABEL org.label-schema.vendor="Jonas Franz" |
||||
LABEL org.label-schema.schema-version="1.0" |
||||
|
||||
ADD release/windows/amd64/drone-crowdin /bin/ |
||||
ENTRYPOINT ["/bin/drone-crowdin"] |
@ -0,0 +1,25 @@ |
||||
image: jonasfranz/drone-crowdin:{{#if build.tag}}{{trimPrefix build.tag "v"}}{{else}}latest{{/if}} |
||||
{{#if build.tags}} |
||||
tags: |
||||
{{#each build.tags}} |
||||
- {{this}} |
||||
{{/each}} |
||||
{{/if}} |
||||
manifests: |
||||
- |
||||
image: jonasfranz/drone-crowdin:{{#if build.tag}}{{trimPrefix build.tag "v"}}-{{/if}}linux-amd64 |
||||
platform: |
||||
architecture: amd64 |
||||
os: linux |
||||
- |
||||
image: jonasfranz/drone-crowdin:{{#if build.tag}}{{trimPrefix build.tag "v"}}-{{/if}}linux-arm64 |
||||
platform: |
||||
architecture: arm64 |
||||
os: linux |
||||
variant: v8 |
||||
- |
||||
image: jonasfranz/drone-crowdin:{{#if build.tag}}{{trimPrefix build.tag "v"}}-{{/if}}linux-arm |
||||
platform: |
||||
architecture: arm |
||||
os: linux |
||||
variant: v7 |
@ -0,0 +1,12 @@ |
||||
module github.com/jonasfranz/drone-crowdin |
||||
|
||||
go 1.13 |
||||
|
||||
require ( |
||||
github.com/davecgh/go-spew v1.1.1-0.20170829195320-a47672248388 // indirect |
||||
github.com/pmezard/go-difflib v1.0.0 // indirect |
||||
github.com/stretchr/testify v1.1.5-0.20170809224252-890a5c3458b4 |
||||
github.com/urfave/cli v1.20.1-0.20170911040819-7fb9c86b14e6 |
||||
golang.org/x/net v0.0.0-20170922011244-0744d001aa84 |
||||
golang.org/x/text v0.1.1-0.20170915090833-1cbadb444a80 // indirect |
||||
) |
@ -0,0 +1,12 @@ |
||||
github.com/davecgh/go-spew v1.1.1-0.20170829195320-a47672248388 h1:c9n+0y02ovmvU9O/gS/fqw6HRlUwG645A2AJckmQVy0= |
||||
github.com/davecgh/go-spew v1.1.1-0.20170829195320-a47672248388/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= |
||||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= |
||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= |
||||
github.com/stretchr/testify v1.1.5-0.20170809224252-890a5c3458b4 h1:c5DdG2to+wHgjlxcmknq5BnzaaJ0N0W842kLlOSurXc= |
||||
github.com/stretchr/testify v1.1.5-0.20170809224252-890a5c3458b4/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= |
||||
github.com/urfave/cli v1.20.1-0.20170911040819-7fb9c86b14e6 h1:FxB2ax1KabQ9P5XJAZHRd6149Q7X+0txg5E+9A1y48U= |
||||
github.com/urfave/cli v1.20.1-0.20170911040819-7fb9c86b14e6/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= |
||||
golang.org/x/net v0.0.0-20170922011244-0744d001aa84 h1:FFXeeSR9Hq1BBmpYJonYmvi9cTbUHJnNAASHkdlc0Zs= |
||||
golang.org/x/net v0.0.0-20170922011244-0744d001aa84/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= |
||||
golang.org/x/text v0.1.1-0.20170915090833-1cbadb444a80 h1:QfbDb2RQkRI2wdkeI7RuwRRLtivUM+917wtHZln6uCk= |
||||
golang.org/x/text v0.1.1-0.20170915090833-1cbadb444a80/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= |
@ -1,22 +0,0 @@ |
||||
Copyright (c) 2012 - 2013 Mat Ryer and Tyler Bunnell |
||||
|
||||
Please consider promoting this project if you find it useful. |
||||
|
||||
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. |
@ -1,332 +0,0 @@ |
||||
Testify - Thou Shalt Write Tests |
||||
================================ |
||||
|
||||
[](https://travis-ci.org/stretchr/testify) [](https://goreportcard.com/report/github.com/stretchr/testify) [](https://godoc.org/github.com/stretchr/testify) |
||||
|
||||
Go code (golang) set of packages that provide many tools for testifying that your code will behave as you intend. |
||||
|
||||
Features include: |
||||
|
||||
* [Easy assertions](#assert-package) |
||||
* [Mocking](#mock-package) |
||||
* [HTTP response trapping](#http-package) |
||||
* [Testing suite interfaces and functions](#suite-package) |
||||
|
||||
Get started: |
||||
|
||||
* Install testify with [one line of code](#installation), or [update it with another](#staying-up-to-date) |
||||
* For an introduction to writing test code in Go, see http://golang.org/doc/code.html#Testing |
||||
* Check out the API Documentation http://godoc.org/github.com/stretchr/testify |
||||
* To make your testing life easier, check out our other project, [gorc](http://github.com/stretchr/gorc) |
||||
* A little about [Test-Driven Development (TDD)](http://en.wikipedia.org/wiki/Test-driven_development) |
||||
|
||||
|
||||
|
||||
[`assert`](http://godoc.org/github.com/stretchr/testify/assert "API documentation") package |
||||
------------------------------------------------------------------------------------------- |
||||
|
||||
The `assert` package provides some helpful methods that allow you to write better test code in Go. |
||||
|
||||
* Prints friendly, easy to read failure descriptions |
||||
* Allows for very readable code |
||||
* Optionally annotate each assertion with a message |
||||
|
||||
See it in action: |
||||
|
||||
```go |
||||
package yours |
||||
|
||||
import ( |
||||
"testing" |
||||
"github.com/stretchr/testify/assert" |
||||
) |
||||
|
||||
func TestSomething(t *testing.T) { |
||||
|
||||
// assert equality |
||||
assert.Equal(t, 123, 123, "they should be equal") |
||||
|
||||
// assert inequality |
||||
assert.NotEqual(t, 123, 456, "they should not be equal") |
||||
|
||||
// assert for nil (good for errors) |
||||
assert.Nil(t, object) |
||||
|
||||
// assert for not nil (good when you expect something) |
||||
if assert.NotNil(t, object) { |
||||
|
||||
// now we know that object isn't nil, we are safe to make |
||||
// further assertions without causing any errors |
||||
assert.Equal(t, "Something", object.Value) |
||||
|
||||
} |
||||
|
||||
} |
||||
``` |
||||
|
||||
* Every assert func takes the `testing.T` object as the first argument. This is how it writes the errors out through the normal `go test` capabilities. |
||||
* Every assert func returns a bool indicating whether the assertion was successful or not, this is useful for if you want to go on making further assertions under certain conditions. |
||||
|
||||
if you assert many times, use the below: |
||||
|
||||
```go |
||||
package yours |
||||
|
||||
import ( |
||||
"testing" |
||||
"github.com/stretchr/testify/assert" |
||||
) |
||||
|
||||
func TestSomething(t *testing.T) { |
||||
assert := assert.New(t) |
||||
|
||||
// assert equality |
||||
assert.Equal(123, 123, "they should be equal") |
||||
|
||||
// assert inequality |
||||
assert.NotEqual(123, 456, "they should not be equal") |
||||
|
||||
// assert for nil (good for errors) |
||||
assert.Nil(object) |
||||
|
||||
// assert for not nil (good when you expect something) |
||||
if assert.NotNil(object) { |
||||
|
||||
// now we know that object isn't nil, we are safe to make |
||||
// further assertions without causing any errors |
||||
assert.Equal("Something", object.Value) |
||||
} |
||||
} |
||||
``` |
||||
|
||||
[`require`](http://godoc.org/github.com/stretchr/testify/require "API documentation") package |
||||
--------------------------------------------------------------------------------------------- |
||||
|
||||
The `require` package provides same global functions as the `assert` package, but instead of returning a boolean result they terminate current test. |
||||
|
||||
See [t.FailNow](http://golang.org/pkg/testing/#T.FailNow) for details. |
||||
|
||||
|
||||
[`http`](http://godoc.org/github.com/stretchr/testify/http "API documentation") package |
||||
--------------------------------------------------------------------------------------- |
||||
|
||||
The `http` package contains test objects useful for testing code that relies on the `net/http` package. Check out the [(deprecated) API documentation for the `http` package](http://godoc.org/github.com/stretchr/testify/http). |
||||
|
||||
We recommend you use [httptest](http://golang.org/pkg/net/http/httptest) instead. |
||||
|
||||
[`mock`](http://godoc.org/github.com/stretchr/testify/mock "API documentation") package |
||||
---------------------------------------------------------------------------------------- |
||||
|
||||
The `mock` package provides a mechanism for easily writing mock objects that can be used in place of real objects when writing test code. |
||||
|
||||
An example test function that tests a piece of code that relies on an external object `testObj`, can setup expectations (testify) and assert that they indeed happened: |
||||
|
||||
```go |
||||
package yours |
||||
|
||||
import ( |
||||
"testing" |
||||
"github.com/stretchr/testify/mock" |
||||
) |
||||
|
||||
/* |
||||
Test objects |
||||
*/ |
||||
|
||||
// MyMockedObject is a mocked object that implements an interface |
||||
// that describes an object that the code I am testing relies on. |
||||
type MyMockedObject struct{ |
||||
mock.Mock |
||||
} |
||||
|
||||
// DoSomething is a method on MyMockedObject that implements some interface |
||||
// and just records the activity, and returns what the Mock object tells it to. |
||||
// |
||||
// In the real object, this method would do something useful, but since this |
||||
// is a mocked object - we're just going to stub it out. |
||||
// |
||||
// NOTE: This method is not being tested here, code that uses this object is. |
||||
func (m *MyMockedObject) DoSomething(number int) (bool, error) { |
||||
|
||||
args := m.Called(number) |
||||
return args.Bool(0), args.Error(1) |
||||
|
||||
} |
||||
|
||||
/* |
||||
Actual test functions |
||||
*/ |
||||
|
||||
// TestSomething is an example of how to use our test object to |
||||
// make assertions about some target code we are testing. |
||||
func TestSomething(t *testing.T) { |
||||
|
||||
// create an instance of our test object |
||||
testObj := new(MyMockedObject) |
||||
|
||||
// setup expectations |
||||
testObj.On("DoSomething", 123).Return(true, nil) |
||||
|
||||
// call the code we are testing |
||||
targetFuncThatDoesSomethingWithObj(testObj) |
||||
|
||||
// assert that the expectations were met |
||||
testObj.AssertExpectations(t) |
||||
|
||||
} |
||||
``` |
||||
|
||||
For more information on how to write mock code, check out the [API documentation for the `mock` package](http://godoc.org/github.com/stretchr/testify/mock). |
||||
|
||||
You can use the [mockery tool](http://github.com/vektra/mockery) to autogenerate the mock code against an interface as well, making using mocks much quicker. |
||||
|
||||
[`suite`](http://godoc.org/github.com/stretchr/testify/suite "API documentation") package |
||||
----------------------------------------------------------------------------------------- |
||||
|
||||
The `suite` package provides functionality that you might be used to from more common object oriented languages. With it, you can build a testing suite as a struct, build setup/teardown methods and testing methods on your struct, and run them with 'go test' as per normal. |
||||
|
||||
An example suite is shown below: |
||||
|
||||
```go |
||||
// Basic imports |
||||
import ( |
||||
"testing" |
||||
"github.com/stretchr/testify/assert" |
||||
"github.com/stretchr/testify/suite" |
||||
) |
||||
|
||||
// Define the suite, and absorb the built-in basic suite |
||||
// functionality from testify - including a T() method which |
||||
// returns the current testing context |
||||
type ExampleTestSuite struct { |
||||
suite.Suite |
||||
VariableThatShouldStartAtFive int |
||||
} |
||||
|
||||
// Make sure that VariableThatShouldStartAtFive is set to five |
||||
// before each test |
||||
func (suite *ExampleTestSuite) SetupTest() { |
||||
suite.VariableThatShouldStartAtFive = 5 |
||||
} |
||||
|
||||
// All methods that begin with "Test" are run as tests within a |
||||
// suite. |
||||
func (suite *ExampleTestSuite) TestExample() { |
||||
assert.Equal(suite.T(), 5, suite.VariableThatShouldStartAtFive) |
||||
} |
||||
|
||||
// In order for 'go test' to run this suite, we need to create |
||||
// a normal test function and pass our suite to suite.Run |
||||
func TestExampleTestSuite(t *testing.T) { |
||||
suite.Run(t, new(ExampleTestSuite)) |
||||
} |
||||
``` |
||||
|
||||
For a more complete example, using all of the functionality provided by the suite package, look at our [example testing suite](https://github.com/stretchr/testify/blob/master/suite/suite_test.go) |
||||
|
||||
For more information on writing suites, check out the [API documentation for the `suite` package](http://godoc.org/github.com/stretchr/testify/suite). |
||||
|
||||
`Suite` object has assertion methods: |
||||
|
||||
```go |
||||
// Basic imports |
||||
import ( |
||||
"testing" |
||||
"github.com/stretchr/testify/suite" |
||||
) |
||||
|
||||
// Define the suite, and absorb the built-in basic suite |
||||
// functionality from testify - including assertion methods. |
||||
type ExampleTestSuite struct { |
||||
suite.Suite |
||||
VariableThatShouldStartAtFive int |
||||
} |
||||
|
||||
// Make sure that VariableThatShouldStartAtFive is set to five |
||||
// before each test |
||||
func (suite *ExampleTestSuite) SetupTest() { |
||||
suite.VariableThatShouldStartAtFive = 5 |
||||
} |
||||
|
||||
// All methods that begin with "Test" are run as tests within a |
||||
// suite. |
||||
func (suite *ExampleTestSuite) TestExample() { |
||||
suite.Equal(suite.VariableThatShouldStartAtFive, 5) |
||||
} |
||||
|
||||
// In order for 'go test' to run this suite, we need to create |
||||
// a normal test function and pass our suite to suite.Run |
||||
func TestExampleTestSuite(t *testing.T) { |
||||
suite.Run(t, new(ExampleTestSuite)) |
||||
} |
||||
``` |
||||
|
||||
------ |
||||
|
||||
Installation |
||||
============ |
||||
|
||||
To install Testify, use `go get`: |
||||
|
||||
* Latest version: go get github.com/stretchr/testify |
||||
* Specific version: go get gopkg.in/stretchr/testify.v1 |
||||
|
||||
This will then make the following packages available to you: |
||||
|
||||
github.com/stretchr/testify/assert |
||||
github.com/stretchr/testify/mock |
||||
github.com/stretchr/testify/http |
||||
|
||||
Import the `testify/assert` package into your code using this template: |
||||
|
||||
```go |
||||
package yours |
||||
|
||||
import ( |
||||
"testing" |
||||
"github.com/stretchr/testify/assert" |
||||
) |
||||
|
||||
func TestSomething(t *testing.T) { |
||||
|
||||
assert.True(t, true, "True is true!") |
||||
|
||||
} |
||||
``` |
||||
|
||||
------ |
||||
|
||||
Staying up to date |
||||
================== |
||||
|
||||
To update Testify to the latest version, use `go get -u github.com/stretchr/testify`. |
||||
|
||||
------ |
||||
|
||||
Version History |
||||
=============== |
||||
|
||||
* 1.0 - New package versioning strategy adopted. |
||||
|
||||
------ |
||||
|
||||
Contributing |
||||
============ |
||||
|
||||
Please feel free to submit issues, fork the repository and send pull requests! |
||||
|
||||
When submitting an issue, we ask that you please include a complete test function that demonstrates the issue. Extra credit for those using Testify to write the test code that demonstrates it. |
||||
|
||||
------ |
||||
|
||||
Licence |
||||
======= |
||||
Copyright (c) 2012 - 2013 Mat Ryer and Tyler Bunnell |
||||
|
||||
Please consider promoting this project if you find it useful. |
||||
|
||||
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. |
@ -1,22 +0,0 @@ |
||||
// Package testify is a set of packages that provide many tools for testifying that your code will behave as you intend.
|
||||
//
|
||||
// testify contains the following packages:
|
||||
//
|
||||
// The assert package provides a comprehensive set of assertion functions that tie in to the Go testing system.
|
||||
//
|
||||
// The http package contains tools to make it easier to test http activity using the Go testing system.
|
||||
//
|
||||
// The mock package provides a system by which it is possible to mock your objects and verify calls are happening as expected.
|
||||
//
|
||||
// The suite package provides a basic structure for using structs as testing suites, and methods on those structs as tests. It includes setup/teardown functionality in the way of interfaces.
|
||||
package testify |
||||
|
||||
// blank imports help docs.
|
||||
import ( |
||||
// assert package
|
||||
_ "github.com/stretchr/testify/assert" |
||||
// http package
|
||||
_ "github.com/stretchr/testify/http" |
||||
// mock package
|
||||
_ "github.com/stretchr/testify/mock" |
||||
) |
@ -0,0 +1,2 @@ |
||||
[flake8] |
||||
max-line-length = 120 |
@ -0,0 +1,2 @@ |
||||
*.coverprofile |
||||
node_modules/ |
@ -0,0 +1,27 @@ |
||||
language: go |
||||
sudo: false |
||||
dist: trusty |
||||
osx_image: xcode8.3 |
||||
go: 1.8.x |
||||
|
||||
os: |
||||
- linux |
||||
- osx |
||||
|
||||
cache: |
||||
directories: |
||||
- node_modules |
||||
|
||||
before_script: |
||||
- go get github.com/urfave/gfmrun/... || true |
||||
- go get golang.org/x/tools/cmd/goimports |
||||
- if [ ! -f node_modules/.bin/markdown-toc ] ; then |
||||
npm install markdown-toc ; |
||||
fi |
||||
|
||||
script: |
||||
- ./runtests gen |
||||
- ./runtests vet |
||||
- ./runtests test |
||||
- ./runtests gfmrun |
||||
- ./runtests toc |
@ -0,0 +1,3 @@ |
||||
# This source code refers to The Go Authors for copyright purposes. |
||||
# The master list of authors is in the main Go distribution, |
||||
# visible at http://tip.golang.org/AUTHORS. |
@ -0,0 +1,3 @@ |
||||
# This source code was written by the Go contributors. |
||||
# The master list of contributors is in the main Go distribution, |
||||
# visible at http://tip.golang.org/CONTRIBUTORS. |
@ -1,648 +0,0 @@ |
||||
// Copyright 2012 The Go Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// +build ignore
|
||||
|
||||
package main |
||||
|
||||
// This program generates table.go and table_test.go.
|
||||
// Invoke as
|
||||
//
|
||||
// go run gen.go |gofmt >table.go
|
||||
// go run gen.go -test |gofmt >table_test.go
|
||||
|
||||
import ( |
||||
"flag" |
||||
"fmt" |
||||
"math/rand" |
||||
"os" |
||||
"sort" |
||||
"strings" |
||||
) |
||||
|
||||
// identifier converts s to a Go exported identifier.
|
||||
// It converts "div" to "Div" and "accept-charset" to "AcceptCharset".
|
||||
func identifier(s string) string { |
||||
b := make([]byte, 0, len(s)) |
||||
cap := true |
||||
for _, c := range s { |
||||
if c == '-' { |
||||
cap = true |
||||
continue |
||||
} |
||||
if cap && 'a' <= c && c <= 'z' { |
||||
c -= 'a' - 'A' |
||||
} |
||||
cap = false |
||||
b = append(b, byte(c)) |
||||
} |
||||
return string(b) |
||||
} |
||||
|
||||
var test = flag.Bool("test", false, "generate table_test.go") |
||||
|
||||
func main() { |
||||
flag.Parse() |
||||
|
||||
var all []string |
||||
all = append(all, elements...) |
||||
all = append(all, attributes...) |
||||
all = append(all, eventHandlers...) |
||||
all = append(all, extra...) |
||||
sort.Strings(all) |
||||
|
||||
if *test { |
||||
fmt.Printf("// generated by go run gen.go -test; DO NOT EDIT\n\n") |
||||
fmt.Printf("package atom\n\n") |
||||
fmt.Printf("var testAtomList = []string{\n") |
||||
for _, s := range all { |
||||
fmt.Printf("\t%q,\n", s) |
||||
} |
||||
fmt.Printf("}\n") |
||||
return |
||||
} |
||||
|
||||
// uniq - lists have dups
|
||||
// compute max len too
|
||||
maxLen := 0 |
||||
w := 0 |
||||
for _, s := range all { |
||||
if w == 0 || all[w-1] != s { |
||||
if maxLen < len(s) { |
||||
maxLen = len(s) |
||||
} |
||||
all[w] = s |
||||
w++ |
||||
} |
||||
} |
||||
all = all[:w] |
||||
|
||||
// Find hash that minimizes table size.
|
||||
var best *table |
||||
for i := 0; i < 1000000; i++ { |
||||
if best != nil && 1<<(best.k-1) < len(all) { |
||||
break |
||||
} |
||||
h := rand.Uint32() |
||||
for k := uint(0); k <= 16; k++ { |
||||
if best != nil && k >= best.k { |
||||
break |
||||
} |
||||
var t table |
||||
if t.init(h, k, all) { |
||||
best = &t |
||||
break |
||||
} |
||||
} |
||||
} |
||||
if best == nil { |
||||
fmt.Fprintf(os.Stderr, "failed to construct string table\n") |
||||
os.Exit(1) |
||||
} |
||||
|
||||
// Lay out strings, using overlaps when possible.
|
||||
layout := append([]string{}, all...) |
||||
|
||||
// Remove strings that are substrings of other strings
|
||||
for changed := true; changed; { |
||||
changed = false |
||||
for i, s := range layout { |
||||
if s == "" { |
||||
continue |
||||
} |
||||
for j, t := range layout { |
||||
if i != j && t != "" && strings.Contains(s, t) { |
||||
changed = true |
||||
layout[j] = "" |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
// Join strings where one suffix matches another prefix.
|
||||
for { |
||||
// Find best i, j, k such that layout[i][len-k:] == layout[j][:k],
|
||||
// maximizing overlap length k.
|
||||
besti := -1 |
||||
bestj := -1 |
||||
bestk := 0 |
||||
for i, s := range layout { |
||||
if s == "" { |
||||
continue |
||||
} |
||||
for j, t := range layout { |
||||
if i == j { |
||||
continue |
||||
} |
||||
for k := bestk + 1; k <= len(s) && k <= len(t); k++ { |
||||
if s[len(s)-k:] == t[:k] { |
||||
besti = i |
||||
bestj = j |
||||
bestk = k |
||||
} |
||||
} |
||||
} |
||||
} |
||||
if bestk > 0 { |
||||
layout[besti] += layout[bestj][bestk:] |
||||
layout[bestj] = "" |
||||
continue |
||||
} |
||||
break |
||||
} |
||||
|
||||
text := strings.Join(layout, "") |
||||
|
||||
atom := map[string]uint32{} |
||||
for _, s := range all { |
||||
off := strings.Index(text, s) |
||||
if off < 0 { |
||||
panic("lost string " + s) |
||||
} |
||||
atom[s] = uint32(off<<8 | len(s)) |
||||
} |
||||
|
||||
// Generate the Go code.
|
||||
fmt.Printf("// generated by go run gen.go; DO NOT EDIT\n\n") |
||||
fmt.Printf("package atom\n\nconst (\n") |
||||
for _, s := range all { |
||||
fmt.Printf("\t%s Atom = %#x\n", identifier(s), atom[s]) |
||||
} |
||||
fmt.Printf(")\n\n") |
||||
|
||||
fmt.Printf("const hash0 = %#x\n\n", best.h0) |
||||
fmt.Printf("const maxAtomLen = %d\n\n", maxLen) |
||||
|
||||
fmt.Printf("var table = [1<<%d]Atom{\n", best.k) |
||||
for i, s := range best.tab { |
||||
if s == "" { |
||||
continue |
||||
} |
||||
fmt.Printf("\t%#x: %#x, // %s\n", i, atom[s], s) |
||||
} |
||||
fmt.Printf("}\n") |
||||
datasize := (1 << best.k) * 4 |
||||
|
||||
fmt.Printf("const atomText =\n") |
||||
textsize := len(text) |
||||
for len(text) > 60 { |
||||
fmt.Printf("\t%q +\n", text[:60]) |
||||
text = text[60:] |
||||
} |
||||
fmt.Printf("\t%q\n\n", text) |
||||
|
||||
fmt.Fprintf(os.Stderr, "%d atoms; %d string bytes + %d tables = %d total data\n", len(all), textsize, datasize, textsize+datasize) |
||||
} |
||||
|
||||
type byLen []string |
||||
|
||||
func (x byLen) Less(i, j int) bool { return len(x[i]) > len(x[j]) } |
||||
func (x byLen) Swap(i, j int) { x[i], x[j] = x[j], x[i] } |
||||
func (x byLen) Len() int { return len(x) } |
||||
|
||||
// fnv computes the FNV hash with an arbitrary starting value h.
|
||||
func fnv(h uint32, s string) uint32 { |
||||
for i := 0; i < len(s); i++ { |
||||
h ^= uint32(s[i]) |
||||
h *= 16777619 |
||||
} |
||||
return h |
||||
} |
||||
|
||||
// A table represents an attempt at constructing the lookup table.
|
||||
// The lookup table uses cuckoo hashing, meaning that each string
|
||||
// can be found in one of two positions.
|
||||
type table struct { |
||||
h0 uint32 |
||||
k uint |
||||
mask uint32 |
||||
tab []string |
||||
} |
||||
|
||||
// hash returns the two hashes for s.
|
||||
func (t *table) hash(s string) (h1, h2 uint32) { |
||||
h := fnv(t.h0, s) |
||||
h1 = h & t.mask |
||||
h2 = (h >> 16) & t.mask |
||||
return |
||||
} |
||||
|
||||
// init initializes the table with the given parameters.
|
||||
// h0 is the initial hash value,
|
||||
// k is the number of bits of hash value to use, and
|
||||
// x is the list of strings to store in the table.
|
||||
// init returns false if the table cannot be constructed.
|
||||
func (t *table) init(h0 uint32, k uint, x []string) bool { |
||||
t.h0 = h0 |
||||
t.k = k |
||||
t.tab = make([]string, 1<<k) |
||||
t.mask = 1<<k - 1 |
||||
for _, s := range x { |
||||
if !t.insert(s) { |
||||
return false |
||||
} |
||||
} |
||||
return true |
||||
} |
||||
|
||||
// insert inserts s in the table.
|
||||
func (t *table) insert(s string) bool { |
||||
h1, h2 := t.hash(s) |
||||
if t.tab[h1] == "" { |
||||
t.tab[h1] = s |
||||
return true |
||||
} |
||||
if t.tab[h2] == "" { |
||||
t.tab[h2] = s |
||||
return true |
||||
} |
||||
if t.push(h1, 0) { |
||||
t.tab[h1] = s |
||||
return true |
||||
} |
||||
if t.push(h2, 0) { |
||||
t.tab[h2] = s |
||||
return true |
||||
} |
||||
return false |
||||
} |
||||
|
||||
// push attempts to push aside the entry in slot i.
|
||||
func (t *table) push(i uint32, depth int) bool { |
||||
if depth > len(t.tab) { |
||||
return false |
||||
} |
||||
s := t.tab[i] |
||||
h1, h2 := t.hash(s) |
||||
j := h1 + h2 - i |
||||
if t.tab[j] != "" && !t.push(j, depth+1) { |
||||
return false |
||||
} |
||||
t.tab[j] = s |
||||
return true |
||||
} |
||||
|
||||
// The lists of element names and attribute keys were taken from
|
||||
// https://html.spec.whatwg.org/multipage/indices.html#index
|
||||
// as of the "HTML Living Standard - Last Updated 21 February 2015" version.
|
||||
|
||||
var elements = []string{ |
||||
"a", |
||||
"abbr", |
||||
"address", |
||||
"area", |
||||
"article", |
||||
"aside", |
||||
"audio", |
||||
"b", |
||||
"base", |
||||
"bdi", |
||||
"bdo", |
||||
"blockquote", |
||||
"body", |
||||
"br", |
||||
"button", |
||||
"canvas", |
||||
"caption", |
||||
"cite", |
||||
"code", |
||||
"col", |
||||
"colgroup", |
||||
"command", |
||||
"data", |
||||
"datalist", |
||||
"dd", |
||||
"del", |
||||
"details", |
||||
"dfn", |
||||
"dialog", |
||||
"div", |
||||
"dl", |
||||
"dt", |
||||
"em", |
||||
"embed", |
||||
"fieldset", |
||||
"figcaption", |
||||
"figure", |
||||
"footer", |
||||
"form", |
||||
"h1", |
||||
"h2", |
||||
"h3", |
||||
"h4", |
||||
"h5", |
||||
"h6", |
||||
"head", |
||||
"header", |
||||
"hgroup", |
||||
"hr", |
||||
"html", |
||||
"i", |
||||
"iframe", |
||||
"img", |
||||
"input", |
||||
"ins", |
||||
"kbd", |
||||
"keygen", |
||||
"label", |
||||
"legend", |
||||
"li", |
||||
"link", |
||||
"map", |
||||
"mark", |
||||
"menu", |
||||
"menuitem", |
||||
"meta", |
||||
"meter", |
||||
"nav", |
||||
"noscript", |
||||
"object", |
||||
"ol", |
||||
"optgroup", |
||||
"option", |
||||
"output", |
||||
"p", |
||||
"param", |
||||
"pre", |
||||
"progress", |
||||
"q", |
||||
"rp", |
||||
"rt", |
||||
"ruby", |
||||
"s", |
||||
"samp", |
||||
"script", |
||||
"section", |
||||
"select", |
||||
"small", |
||||
"source", |
||||
"span", |
||||
"strong", |
||||
"style", |
||||
"sub", |
||||
"summary", |
||||
"sup", |
||||
"table", |
||||
"tbody", |
||||
"td", |
||||
"template", |
||||
"textarea", |
||||
"tfoot", |
||||
"th", |
||||
"thead", |
||||
"time", |
||||
"title", |
||||
"tr", |
||||
"track", |
||||
"u", |
||||
"ul", |
||||
"var", |
||||
"video", |
||||
"wbr", |
||||
} |
||||
|
||||
// https://html.spec.whatwg.org/multipage/indices.html#attributes-3
|
||||
|
||||
var attributes = []string{ |
||||
"abbr", |
||||
"accept", |
||||
"accept-charset", |
||||
"accesskey", |
||||
"action", |
||||
"alt", |
||||
"async", |
||||
"autocomplete", |
||||
"autofocus", |
||||
"autoplay", |
||||
"challenge", |
||||
"charset", |
||||
"checked", |
||||
"cite", |
||||
"class", |
||||
"cols", |
||||
"colspan", |
||||
"command", |
||||
"content", |
||||
"contenteditable", |
||||
"contextmenu", |
||||
"controls", |
||||
"coords", |
||||
"crossorigin", |
||||
"data", |
||||
"datetime", |
||||
"default", |
||||
"defer", |
||||
"dir", |
||||
"dirname", |
||||
"disabled", |
||||
"download", |
||||
"draggable", |
||||
"dropzone", |
||||
"enctype", |
||||
"for", |
||||
"form", |
||||
"formaction", |
||||
"formenctype", |
||||
"formmethod", |
||||
"formnovalidate", |
||||
"formtarget", |
||||
"headers", |
||||
"height", |
||||
"hidden", |
||||
"high", |
||||
"href", |
||||
"hreflang", |
||||
"http-equiv", |
||||
"icon", |
||||
"id", |
||||
"inputmode", |
||||
"ismap", |
||||
"itemid", |
||||
"itemprop", |
||||
"itemref", |
||||
"itemscope", |
||||
"itemtype", |
||||
"keytype", |
||||
"kind", |
||||
"label", |
||||
"lang", |
||||
"list", |
||||
"loop", |
||||
"low", |
||||
"manifest", |
||||
"max", |
||||
"maxlength", |
||||
"media", |
||||
"mediagroup", |
||||
"method", |
||||
"min", |
||||
"minlength", |
||||
"multiple", |
||||
"muted", |
||||
"name", |
||||
"novalidate", |
||||
"open", |
||||
"optimum", |
||||
"pattern", |
||||
"ping", |
||||
"placeholder", |
||||
"poster", |
||||
"preload", |
||||
"radiogroup", |
||||
"readonly", |
||||
"rel", |
||||
"required", |
||||
"reversed", |
||||
"rows", |
||||
"rowspan", |
||||
"sandbox", |
||||
"spellcheck", |
||||
"scope", |
||||
"scoped", |
||||
"seamless", |
||||
"selected", |
||||
"shape", |
||||
"size", |
||||
"sizes", |
||||
"sortable", |
||||
"sorted", |
||||
"span", |
||||
"src", |
||||
"srcdoc", |
||||
"srclang", |
||||
"start", |
||||
"step", |
||||
"style", |
||||
"tabindex", |
||||
"target", |
||||
"title", |
||||
"translate", |
||||
"type", |
||||
"typemustmatch", |
||||
"usemap", |
||||
"value", |
||||
"width", |
||||
"wrap", |
||||
} |
||||
|
||||
var eventHandlers = []string{ |
||||
"onabort", |
||||
"onautocomplete", |
||||
"onautocompleteerror", |
||||
"onafterprint", |