aboutsummaryrefslogtreecommitdiff
path: root/tests/hostname.test
blob: 5107ce2221e4ca565757bcd2e7f110f4b36722be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

# Copyright 2014 Divya Kothari <divya.s.kothari@gmail.com>
# Copyright 2014 Naha Maggu <maggu.neha@gmail.com>

[ -f testing.sh ] && . testing.sh

#testing "name" "command" "result" "infile" "stdin"

# Get system hostname
hostnameExe=`which hostname`
hostnameOut=`$hostnameExe`

# New hostname
NewHostname="NewHostName.system"

testing "get" "hostname" "$hostnameOut\n" "" ""
testing "set, Get and then Reset" "hostname $NewHostname; hostname; hostname $hostnameOut; hostname" "$NewHostname\n$hostnameOut\n" "" ""