Netbout.com is a communication platform that enables smoothless integration of humans and software agents in a conversation-centered environment.
Try it at www.netbout.com.
The original idea behind Netbout is explained in USPTO patent application US 12/943,022.
A user is able to login, using one of the following social/federated methods: Facebook, Google+ and Github. A user is able to logout.
When user logs in for the first time, he must create a new "alias" inside Netbout. The system checks the validity of the alias and makes sure each alias is unique in the entire system.
A user can start a new "bout", which is a conversation between a few users.
A user can post a message to a bout and read all other messages, posted by other users, in reverse chronological order (the most recent messages on the top).
A user can invite other users to the bout, knowing just their aliases.
A user can attach a file to a bout. Any attached file can be deleted. A user can download any attached file.
If you're a manual tester and want to contribute to a project, please login to Netbout.com, create an account and do whatever you think is reasonable to reveal functional and non-functional problems in the system. Each bug you find, report in a new Github issue.
Please, read these articles before starting to test and report bugs: Five Principles of Bug Tracking, Bugs Are Welcome, and Wikipedia's Definition of a Software Bug Is Wrong.
If you're a software developer and want to contribute to
the project, please fork the repository, make changes, and submit a pull request.
We promise to review your changes same day and apply to
the master
branch, if they look correct.
Please run Maven (3.1 or higher!) build before submitting a pull request:
$ mvn clean install -Pqulice
If your default encoding is not UTF-8, some of unit tests will break. This is an intentional behavior. To fix that, set this environment variable in console (in Windows, for example):
SET JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF-8
Similarly, on Linux:
export JAVA_TOOL_OPTIONS="-Dfile.encoding=UTF-8"
Want to run it locally? Simple as that:
$ mvn clean install -Phit-refresh -Dport=8080
In a minute the site is ready at http://localhost:8080
It is highly recommended to run integration tests to guarantee that your changes will not break any other part of the system. Follow these steps to execute integration tests:
- Open your browser's console and go to network view;
- Access the netbout server you want to test with and log in (if you are not). You may access production site http://www.netbout.com/ or your local snapshot http://localhost:8080;
- On network monitor of your browser, select the connection that requested main page www.netbout.com.
- On that request, search for the response headers.
- You will find a key named
Set-Cookie
on that response. - The value of that header, contains a lot of other
key values
content. Search for content ofPsCookie
variable and copy that content. - Go back to you console and run the following code, replacing the
${cookie_value}
for the content that you copied fromPsCookie
, replacing the${netbout_server}
for the site that you accessed:
$ mvn clean install -Dnetbout.token=${cookie_value} -Dnetbout.url=${netbout_server}